สวัสดีค่ะ คือเราเขียนโค้ดแล้วติดerror ในpython 3 compiler: jupyter notebook คิดว่าน่าจะเป็นที่ library ไม่ detect เราใช้ tkinter ค่ะ โค้ดเป็นโค้ดเกี่ยวกับ gui เกมเดาตัวเลข ต้องแก้ตรงไหนถึงจะรันผ่านคะ รบกวนทีค่ะ😭🙏
อันนี้โค้ดค่ะ
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้ import tkinter as tk
from tkinter import *
import random
attempts = 10
answer = random.randint(1,99)
def check_answer():
global sttempts
global text
attemps -= 1
gusess = int(enter_window.get())
if answer == guess:
text.sent("You win!")
btn_check.pack_forget()
elif attempts == 0:
text.set("You are out of attemps!")
btn_check.pack_forget()
elif guess < answer:
text.set("Incorrect You have " + str(attemps) + "attemps remaining - go higher!!")
elif guess > answer:
text.set("Incorrect You have " + str(attemps) + "attemps remaining - go higher!!")
return
root = Tk()
root.title("Guess The Number")
root.geometry("500x150")
label = label(root, text = "Guess the number between 1 & 99")
label.pack()
entry_window = Entry(root,width=40, borderwidth=4)
entry_window.pack
btn_check = Button(root, text="check", command=check_answer)
btn_chek.pack()
btn_check = Button(root, text="Quit", command=root.destroy)
btn_chek.pack()
text = StringVar()
text.set("You have 10 attempts remaining Good luck")
guess_attemps = Label(root, textvarible=text)
guess_attemps.pack()
root.mainloop()
Error python : no display name and no $display enviroment variable
อันนี้โค้ดค่ะ
[Spoil] คลิกเพื่อดูข้อความที่ซ่อนไว้