我有這樣的代碼:的Python:使用控制,如果
def the_flying_circus():
if True and True and True and not False:
print "Kevin stinkt"
elif 10 < 4:
print "Justin stinkt"
else:
print "herb-wuerzig"
當我print the_flying_circus
我得到Kevin stinkt
印刷,None
作爲回報。我需要False
作爲在線教程的回報。我爲什麼得到None
,以及如何獲得True
?
* 「我知道凱文stinkt當一回」 * - ** **不正確。函數*打印*''凱文stinkt''和*返回*'None'。見例如http://stackoverflow.com/q/7664779/3001761。 – jonrsharpe 2014-10-27 22:39:49