It gives me error when i run my "Tkinter" code.It says "Tk() was not defined". I tried to download Tkinter on PyCharm but there are a lot of them. Well, I don't know what to do. Help please.
21 Answer
Install future instead of Tkinter on Pycharm. In the Pycharm console, install future as
pip install futureafter install is done, use below to import Tkinter
from future.moves import tkinter