位置:首頁 > 腳本語言 > Python教學 > Python pass語句

Python pass語句

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!