导语:
本文主要介绍了关于如何用python编写死循环的相关知识,包括死循环程序停止了,以及python while死循环这些编程知识,希望对大家有参考作用。
python中的死循环
这里True,代表1是真,0是假
i = 0
while True:
i = i + 1
if i == 50:
print 'I have got to the round 50th!'
continue
if i>70:break
print i
死循环
i = 0
while True:
i = i + 1
if i == 5000000:
print 'I have got to the round 50th!'
break
# if i>70:break
# print i
推荐学习《
》。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何在 python 中使用 numpy.arange() 函数08/19
- ♥ python3中如何创建txt文件操作09/19
- ♥ 如何在mysql中建立数据库10/16
- ♥ python调用api接口有几种方式08/26
- ♥ 如何保存python字典类型的数据10/02
- ♥ Python获取GIL锁的过程01/09
内容反馈