미해결
파이썬 무료 강의 (활용편2) - GUI 프로그래밍 (4시간)
insert() 오류 해석
calculator.py 라는 파일을 만들었는데 오류가 나네요.
왜 이러는 거죠?
오류문->
line 156, in bc_0
txt.insert("0")
TypeError: insert() missing 1 required positional argument: 'string'
Exception in Tkinter callback
코드->
def bc_0():
num_lst.append(0)
txt.config(state="normal")
txt.insert(0)
txt.config(state="readonly")