标签:xxx 小例子 range python ... 使用 循环 for 循环 pytho
[Python]Python 使用 for 循环的小例子:
In [7]: for i in range(5):
...: print "xxxx"
...: print "yyyy"
...:
xxxx
yyyy
xxxx
yyyy
xxxx
yyyy
xxxx
yyyy
xxxx
yyyy
标签:xxx 小例子 range python ... 使用 循环 for 循环 pytho
原文地址:http://www.cnblogs.com/gaojian/p/7614577.html