标签:color 使用 文件 for line python
python:
循环else:
while true:
if x>1:
print()
break
else:
print()
文件循环:
for line in open(‘test.txt’):
print(line,end=’’)
获得enumerate:
S=’spam‘
for( offset, item) in enumrate(S):
print(item, ‘appear is’, offset)
备注:
zip函数,使用for循环并行使用多个序列
python知识点(07-08),布布扣,bubuko.com
标签:color 使用 文件 for line python
原文地址:http://www.cnblogs.com/beiyeren/p/3832227.html