這篇文章主要介紹了python中pass語句用法,對比C++程序實例分析了pass語句的使用方法,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了python中pass語句用法。分享給大家供大家參考。具體分析如下:
1、空語句 do nothing
2、保證格式完整
3、保證語義完整
4、以if語句為例:
C/C++中寫法:
?
1 2 3 4 if(true) ; // do nothing else {} // do nothingpython中寫法:
?
1 2 3 4 if true: pass # do nothing else: print "do something."測試程序:定義一個空函數
?
1 2 3 4 5 >>> def nullfunc(): ... pass ... >>> nullfunc() >>>希望本文所述對大家的Python程序設計有所幫助。