Python if-else函数:为什么输出会忽略else行

时间:2015-01-31 08:28:29

标签: python if-statement syntax

我正在学习python,我不明白为什么其他行不起作用。

脚本的输出总是给我if行而不是else行,无论" count" :

def donuts(count):
     if count>=10: print 'Number of donuts: many'
     else: print 'Number of donuts: ' + `count` 
count = raw_input("Number of donuts: ")
donuts(count)
raw_input("press<enter>")

0 个答案:

没有答案