在 tkinter 上创建对故事情节有影响的交互式按钮

问题描述 投票:0回答:0

我对 python 中的 tkinter 完全陌生,我开始学习如何对其进行编码。我正在创建一个你必须逃离森林的故事情节(这是一个基本故事,因为我想编写代码而不是想出一个很酷的情节) 我已经为生火、寻找食物或睡觉的选项创建了一些按钮,但我想稍微改变一下,这样当你点击任何一个按钮时,无论你选择什么选项,它都会为你提供不同的故事。


print("You are hungry, cold, and sleepy. Do you want to find food, make a fire, or go to sleep. ")
# Create the Tkinter window and set the title
window = tk.Tk()
window.title("Random Number Generator")

# Create a button to for the options
fire = tk.Button(window, text="Make a fire")
fire.pack()

food = tk.Button(window, text="Find food")
food.pack()

sleep = tk.Button(window, text = "Go to sleep")
sleep.pack()

# Create a label to display the options
number_label = tk.Label(window, font=("Arial", 48), text="")
number_label.pack()
# Start the Tkinter event loop
window.mainloop()


我可以很好地点击按钮,我该怎么做,例如,如果我点击食物,它会说你找到了任何食物等等。 我知道这个论坛对帖子的小细节很挑剔,我希望我的问题足够详细以便理解。感谢您的帮助!

我不能说我没有尝试做某事,但我无法全神贯注于我需要的东西。

python tkinter button
© www.soinside.com 2019 - 2024. All rights reserved.