• enumerate() 函数的返回值


    enumerate,这个单词是“列举、枚举”的意思。enumerate() 函数的用法很简单,它的作用是同时给出序列的元素索引和元素。你看完下面这个例子你就明白是什么意思了:

    names = ["吴承恩", "罗贯中", "施耐庵", "曹雪芹"]
    
    for index, item in enumerate(names):
      print(index, item)
    
    # 输出:
    # 0 吴承恩
    # 1 罗贯中
    # 2 施耐庵
    # 3 曹雪芹

    可以看到,index 是列表中元素的索引,item 是列表中对应的元素。写法是不是和 zip() 函数结合的 for 循环很像?我想你应该猜出 enumerate() 函数的返回值长啥样了吧,我们来验证一下:


    names = ["吴承恩", "罗贯中", "施耐庵", "曹雪芹"]

    print(list(enumerate(names)))
    # 输出:[(0, '吴承恩'), (1, '罗贯中'), (2, '施耐庵'), (3, '曹雪芹')]

    提示:enumerate() 函数返回值是 enumerate 类型,也需要用 list() 函数转换。

    它里面的元素也是元组,元组里第一个元素是索引,第二个元素是原来列表中对应索引的元素。
  • 相关阅读:
    378. Kth Smallest Element in a Sorted Matrix
    372. Super Pow
    357. Count Numbers with Unique Digits
    345. Reverse Vowels of a String
    343. Integer Break
    347. Top K Frequent Elements
    344. Reverse String
    338. Counting Bits
    326. Power of Three
    python练习
  • 原文地址:https://www.cnblogs.com/mingzhuqi/p/13245750.html
Copyright © 2020-2023  润新知