美文网首页
学习随记

学习随记

作者: ThalesW | 来源:发表于2020-04-06 21:27 被阅读0次
    1. python enumerate
      enumerate() 函数用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中。
        seq = ['one', 'two', 'three']
        for i, element in enumerate(seq):
            print i, element
        0 one
        1 two
        2 three
    

    相关文章

      网友评论

          本文标题:学习随记

          本文链接:https://www.haomeiwen.com/subject/ojpiphtx.html