我正在嘗試構建一個基於測試的遊戲,並帶有選擇,並且我想知道是否有方法將選擇發送到特定功能。這是蟒蛇發送選擇到python中的另一個功能
例如:
def main():
choice =input("'n' or 'e'")
if choice == 'n':
print("You walk north")
city()
else:
print("You starve to death")
near_death()
main()
def city():
print("You finally made it to the city congrats")
city()
def near_death():
print("Right before you black out from hunger you see an old man standing above you")
near_death()
反正是有得到的if語句進入它屬於過?
你能澄清你在做什麼嗎?你的描述不是很清楚。預期的投入和產出是什麼? – depperm
定義你的功能之前,你叫你的主。 –
我試圖發送您在IF語句中對函數城所作的選擇,以及您將在else語句中對near_death函數做出的選擇。就像你在「玩」遊戲一樣,你可以在沒有跨越路徑的情況下獲得單獨的成果。 – Linkstus