码迷,mamicode.com
首页 > 编程语言 > 详细

python3.3while循环

时间:2019-06-29 19:28:57      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:code   python3   mamicode   嵌套   图片   print   while循环   for循环   循环条件   

#while循环与for循环不同的是,while循环的停止条件是自己设置!


i=0#初始值
while i<=10:#循环条件
print(i)
#while循环嵌套if条件

if i==5:
print("中场休息")
i=i+1#改变初始值

技术图片

 

python3.3while循环

标签:code   python3   mamicode   嵌套   图片   print   while循环   for循环   循环条件   

原文地址:https://www.cnblogs.com/lma0702/p/11107501.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!