python语法 之 循环迭代 # -*- coding:utf-8 -*-#while 条件:# 代码块11#else:# 代码块2i=1while i<=5: print '第'+str(i)+'次输出' i+=1 #语法没有i++else: print '完毕'#for one in object:# 代码块1# if 条件1:# br Python 2023-07-25 69 点赞 1 评论 104 浏览