PythonStudy
Posted lijinghuabj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PythonStudy相关的知识,希望对你有一定的参考价值。
1. enumerate
elements = (‘foo‘, ‘bar‘, ‘baz‘) for elem in elements: print (elem) elements = (‘foo‘, ‘bar‘, ‘baz‘) for count, elem in enumerate(elements): print (count, elem)
Result:
foo bar baz 0 foo 1 bar 2 baz
以上是关于PythonStudy的主要内容,如果未能解决你的问题,请参考以下文章