GUI를 사용하여 LED를 켜고 끄려고합니다.Toggle LED Python 3.x tkinter
코드를 실행할 때 제목에 "tk"라고 말하는 빈 상자가 나타납니다.
import tkinter as tk
class Application(tk.Frame):
def __init__(self, master=None):
super().__init__(master)
self.pack()
Label(frame, text='Turn LED ON').grid(row=0, column=0)
Label(frame, text='Turn LED OFF').grid(row=1, column=0)
self.button = Button(frame, text='LED 0 ON', command=self.convert0)
self.button.grid(row=2, columnspan=2)
def convert0(self, tog=[0]):
tog[0] = not tog[0]
if tog[0]:
self.button.config(text='LED 0 OFF')
else:
self.button.config(text='LED 0 ON')
root = tk.Tk()
app = Application(master=root)
app.mainloop()
단계 수정으로 단계를 제공해 주셔서 감사합니다. – Velkoid