首页 > 编程语言 > 详细

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

时间:2016-02-06 00:22:55      阅读:134      评论:0      收藏:0      [点我收藏+]

 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中的pass语句使用方法讲解

原文:http://www.jb51.net/article/66109.htm

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!