0
執行功能我有一個while循環中如下代碼:無法在while循環
while True:
user_input = input("y or n")
if user_input == "y":
yes()
break
if user_input == "n":
no()
break
def yes():
print("yes")
def no():
print("no")
當我輸入「Y」,出現此消息阻止功能被執行。
NameError: name 'yes' is not defined
這是爲什麼?我怎麼能解決呢?
定義是()while循環 –
道歉過,但提供什麼理由來降低我的文章的得分爲-1? @TimCastelijns你碰巧知道/ –
大概是因爲這是基本的和以前已經問 –