AngelPlayer`s Diary

에러

AttributeError: 'NoneType' object has no attribute 'configure'

 

 

 

 

원인

tkinter의 Label, Button 등을 생성하면서 바로 위치 등을 조절하는 경우(ex. place, pack) 해당 에러가 발생합니다.

 

 

 

해결 방법

원본 코드 : 

txt = Label(root, text='', bg = "white").place(x=54, y=434)

 

 

해결 코드 :

txt = Label(root, text='', bg = "white")
txt.place(x=54, y=434)

 

 

Reference

https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=post_human&logNo=220159008733 

 

 

 

 

공유하기

facebook twitter kakaoTalk kakaostory naver band