我对Python比较陌生,我已经制作了一个调用函数的菜单页面。这是一个课程作业,所以它都是为我的演示准备的问题。 但是,菜单显示并允许您输入问题的选项,但实际上并不运行该功能?没有错误,只是没有。
在调用菜单之前,我已经在同一个文件中定义了函数,并且我已经尝试去除函数并将脚本放在if语句中,例如:
if questionChoice == 1:
print("Hello")
但它仍然没有做任何事情?这是完整的代码:
def Q1():
print("hello")
def Q2():
print("hello world")
#MENU
def Menu():
print("Question List:")
print("Question 1")
print("Question 2")
questionChoice = int(input("Choose Question: "))
return questionChoice
questionChoice = Menu()
if questionChoice == 1:
Q1()
elif questionChoice == 2:
Q2()
else:
print("Choose A Question")
任何帮助将不胜感激! 谢谢!