标签:
如果for循环完整结束,无break打断循环,那么执行else里面的内容,否则不执行。
while True: n = raw_input(‘>‘) for x in n: if x == ‘f‘: print ‘find it.‘ break else: print ‘nothing find.‘
for...else循环
原文地址:http://www.cnblogs.com/iNeoWong/p/4714024.html