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

python --条件、循环和其他语句(三)

时间:2018-09-11 21:19:24      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:添加   完成   python   png   pytho   nbsp   image   tin   pre   

1. break 和continue :

for i in range(0,101):
    if i*i >=100:
        print(i)
        break

另外三条语句:pass、del。

pass 其实啥都没干,但是有时候为了修复空语句:

比如:

这些代码不能运行,因为在Python中代码块不能为空。要修复这个问题,只需在中间的代码
块中添加一条pass语句即可。
if name == ‘Ralph Auldus Melish‘:
print(‘Welcome!‘)
elif name == ‘Enid‘:
# 还未完成……
pass
elif name == ‘Bill Gates‘:
print(‘Access Denied‘)

del:

     python 的对象很多都在内存中,只有使用del 可以删除:

>>> del x
>>> y
[‘Hello‘, ‘Python‘]

本章函数汇总:

技术分享图片

 

python --条件、循环和其他语句(三)

标签:添加   完成   python   png   pytho   nbsp   image   tin   pre   

原文地址:https://www.cnblogs.com/daodaosky/p/9629653.html

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