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的主要内容,如果未能解决你的问题,请参考以下文章

PythonStudy

PythonStudy——闭包

问题解决: PythonStudy 环境搭建

PythonStudy——元组 Tuple

PythonStudy——字典 Dictionary

PythonStudy——变量 Variable