位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python应用操作——玩转枚举

提问人:ylm发布时间:2020-09-29

使用枚举可以在循环中方便地找到(当前的)索引:

In [54]: testList= [10,20,30]

 

In [55]: for i,value in enumerate(testList):

    ...:     print(i,':',value)

    ...:     0 : 101 : 202 : 30

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部