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
[Python] Python 코드 내부에서 Python 실행 & 결과 가져오기 (0) | 2022.09.21 |
---|---|
[Pyinstaller 해결] Trojan:Win32/Wacatac.B!ml 오진 해결 방법 (2) | 2022.08.19 |
[Anaconda] 가상환경 생성 & 사용법 (0) | 2021.11.27 |
[Python] 윈도우에서 prophet 설치하기 (0) | 2021.11.25 |
[Tensorflow] cudart64_110.dll not found 에러 해결 (0) | 2021.11.24 |