1.2.3.2 for/range
在索引上迭代:
In [97]:
for i in range(4):
print(i)
0
1
2
3
但是最经常使用,也更易读的是在值上迭代:
In [98]:
for word in ('cool', 'powerful', 'readable'):
print('Python is %s' % word)
Python is cool
Python is powerful
Python is readable
本文档使用 BookStack 构建