python --条件、循环和其他语句(三)
2021-07-02 14:06
标签:添加 完成 python png pytho nbsp image tin pre 1. break 和continue : 另外三条语句:pass、del。 pass 其实啥都没干,但是有时候为了修复空语句: 比如: 这些代码不能运行,因为在Python中代码块不能为空。要修复这个问题,只需在中间的代码 del: python 的对象很多都在内存中,只有使用del 可以删除: >>> del x 本章函数汇总: python --条件、循环和其他语句(三) 标签:添加 完成 python png pytho nbsp image tin pre 原文地址:https://www.cnblogs.com/daodaosky/p/9629653.htmlfor i in range(0,101):
if i*i >=100:
print(i)
break
块中添加一条pass语句即可。
if name == ‘Ralph Auldus Melish‘:
print(‘Welcome!‘)
elif name == ‘Enid‘:
# 还未完成……
pass
elif name == ‘Bill Gates‘:
print(‘Access Denied‘)
>>> y
[‘Hello‘, ‘Python‘]
文章标题:python --条件、循环和其他语句(三)
文章链接:http://soscw.com/index.php/essay/100821.html