***'返回'外部函数(timer.py,第7行)

时间:2013-03-21 16:45:48

标签: python

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'")

我认为这是我的缩进,但我仍然无法让它工作,它可能是非常简单的事情,我以后使用它作为另一个文件的基础,所以我需要检查它的工作原理。

1 个答案:

答案 0 :(得分:2)

您只能在函数中使用return语句。您的代码根本没有定义函数。