代碼
chatgpt import random import tkinter as tk # Generate a random number between 1 and 10 secret_num = random.randint(1, 10) # Create a window window = tk.Tk() window.title("Guess the Number") # Create a label label = tk.Label(text="Guess a number between 1 and 10") label.pack() # Create a function to check the user's guess def check_guess(): ??guess = int(guess_entry.get()) ??if guess == secret_num: ????label.config(text="You got it! The number was {}".format(secret_num)) ??else: ????label.config(text="That's not it! Try again.") # Create an entry box guess_entry = tk.Entry() guess_entry.pack() # Create a button button = tk.Button(text="Check", command=check_guess) button.pack() # Run the window window.mainloop()
標(biāo)簽: