+ 1
tkinter
How to use tkinter?? there is some error
3 Respostas
+ 2
You have to import tkinter module like this :
from tkinter import *
Then, you can create a main window :
window = Tk()
window.mainloop()
Then, read the doc!
+ 4
Tkinter doesn't work on Sololearn.
+ 2
Right HonFu!