Python中的pass语句使用方法讲解

Carnelian ·
更新时间:2024-11-10
· 755 次阅读

 Python pass语句使用当语句要求不希望任何命令或代码来执行。

pass语句是一个空(null)操作;在执行时没有任何反应。pass也是代码最终会是有用的,但暂时不用写出来(例如,在存根为例):
语法

Python pass语句语法如下:

pass

例子

#!/usr/bin/python for letter in 'Python': if letter == 'h': pass print 'This is pass block' print 'Current Letter :', letter print "Good bye!"

当执行上面的代码,它会产生以下结果:

Current Letter : P Current Letter : y Current Letter : t This is pass block Current Letter : h Current Letter : o Current Letter : n Good bye! 您可能感兴趣的文章:python中的break、continue、exit()、pass全面解析Python循环语句之break与continue的用法Python跳出循环语句continue与break的区别对于Python异常处理慎用“except:pass”建议简单了解python的break、continue、pass



方法 pass Python

需要 登录 后方可回复, 如果你还没有账号请 注册新账号
相关文章