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'")
我认为这是我的缩进,但我仍然无法让它工作,它可能是非常简单的事情,我以后使用它作为另一个文件的基础,所以我需要检查它的工作原理。
答案 0 :(得分:2)
您只能在函数中使用return
语句。您的代码根本没有定义函数。。