newquiz = input ("would you like to start a different quiz?")
if newquiz == ("yes") or start == ("yes").upper() or start == ("Yes"):
exec ("N:\A Level work\computing coursework\quiz2.py")
所以基本上,在此代码中,如果用户输入yes,则该代码将打开我的第二个python测验,该测验位于同一文件夹中。但是,运行时,代码将返回以下内容:
syntax error: invalid syntax(<string>,line 1).
我们将不胜感激。
答案 0 :(得分:1)
我猜您正在使用Python2。在Python 2中,input()
将评估用户作为Python表达式输入的文本。将其更改为raw_input(...)
,它将按预期工作。
(更好的方法是:安装Python 3并立即使用。在Python 3中,input()
会执行您认为的操作。)
答案 1 :(得分:0)
尝试使用subprocess
from subprocess import call
newquiz = input ("would you like to start a different quiz?")
if newquiz == ("yes") or start == ("yes").upper() or start == ("Yes"):
call(["python", "quiz2.py"])