pythonPython里有死循环吗?
何为死循环?在编程中,一个无法靠自身的控制终止的循环被称为死循环。
python中的死循环
这里True,代表1是真,0是假
i=0
whileTrue:
i=i+1
ifi==50:
print'Ihavegottotheround50th!'
continue
ifi>70:break
printi
死循环
i=0
whileTrue:
i=i+1
ifi==5000000:
print'Ihavegottotheround50th!'
break
#ifi>70:break
#printi
两种方法打印10000000
方法一
i=0
whilei<10000000:
i=i+1
continue
print'Ihavegottotheround',i
#break
#ifi>70:break
方法二:
程序走完才走else,不然不走else
i=0
whilei<10000000:
i=i+1
#continue
else:
print'Ihavegottotheround',i
#break
#ifi>70:break
#printi
while和for循环对比(一个道理)
i=0
whilei<10000000:
i=i+1
#continue
else:
print'Ihavegottotheround',i
#break
#ifi>70:break
#printi
foriinrange(100):
printi
else:
print'Theloopisdone!'
以上内容为大家介绍了Python培训之Python里有死循环吗?,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。
猜你喜欢LIKE
相关推荐HOT
更多>>python函数中使用for循环
python函数中使用for循环1、在for循环中使用函数需要更长的执行时间,因为每次迭代都会调用该函数。2、如果for循环是在函数内部实现的,那么该...详情>>
2023-11-14 13:53:34python3.1版本的特性有哪些
python3.1中的特性有哪些1、千位数格式化,可以在使用字符串格式化函数时直接完成。在格式化大数时,通常是每三位数放置逗号,使数字更易读(例...详情>>
2023-11-14 13:18:27python__new__()和__init__()有什么区别?
在python中,__new__()不是一定要有,只有继承自object的类才有,该方法可以return父类(通过super(当前类名,cls).__new__())出来的实例,或者直...详情>>
2023-11-14 12:38:55pythonwheel是什么
python的第一个主流打包格式是.egg文件,现在大家庭中又有了一个叫做Wheel(*.whl)的新成员。wheel“被设计成包含PEP376兼容安装(一种非常接近于...详情>>
2023-11-14 11:30:39