首页 > 编程 > Python > 正文

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

2020-02-23 01:13:19
字体:
来源:转载
供稿:网友

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

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

Python pass语句语法如下:

pass

例子

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

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

Current Letter : PCurrent Letter : yCurrent Letter : tThis is pass blockCurrent Letter : hCurrent Letter : oCurrent Letter : nGood bye!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表