python pass用法
C/C++中写法:
if(true) ; // do nothing else {} // do nothing
python 中写法:
if true: pass # do nothing else: print "do something."
测试程序:定义一个空函数
>>> def nullfunc(): ... pass ... >>> nullfunc() >>>