美文网首页颠覆你的Python实践软件测试软件测试之路
python3 enumerate 实现同时获取list的ind

python3 enumerate 实现同时获取list的ind

作者: 亭子青年 | 来源:发表于2017-09-06 11:21 被阅读60次

    使用for ... in ...循环获取某个list的值,可是我的需求是,需要同时知道该value的index,这个时候我们就需要使用python的enumerate函数

    实例

    if __name__ == "__main__":
        list01 = ["a","b","c"]
        for index,value in enumerate(list01):
            print(index,value)
    

    打印的结果

    打印的结果.png

    在什么时候使用?

    管他的,先记下了

    相关文章

      网友评论

      本文标题:python3 enumerate 实现同时获取list的ind

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