I have been trying Tkinter with this basic code. But while running it i am getting an error called Traceback error. I am using Python 3.8.3.
Asked
Active
Viewed 56 times
-2
-
PL check my code and the error in pics attached above.. – harish tirumalla May 27 '20 at 16:57
-
2Posting images makes it harder for people to help. Please post as plain text. – John Gordon May 27 '20 at 16:58
1 Answers
2
from tkinter import *
You capitalized the T in tkinter

steine18
- 56
- 4
-
-
The python 3 documentation says to use all lower case when importing. https://docs.python.org/3/library/tkinter.html – steine18 May 29 '20 at 15:09