yes = set(['yes','y', 'ye', ''])
no = set(['no','n'])
choice = raw_input().lower()
if choice in yes:
return True
if choice in no:
return False
else:
sys.stdout.write("Please respond with 'yes' or 'no'")
yes = set(['yes','y', 'ye', ''])
no = set(['no','n'])
choice = raw_input().lower()
if choice in yes:
return True
if choice in no:
return False
else:
sys.stdout.write("Please respond with 'yes' or 'no'")
我認爲這是我的縮進,但我仍然無法得到它的工作,它可能是這麼簡單,我用它作爲基地爲另一個文件後,所以我需要檢查它的作品。***'return'外部函數(timer.py,第7行)
在你的代碼中是否有'def functionnamename():'line * at all * *? – 2013-03-21 16:46:30
錯誤非常明顯......您使用'return'並且您不在函數內部...... – Xymostech 2013-03-21 16:46:57