tkinter_gui.py 95 B

1234567
  1. import tkinter
  2. top = tkinter.Tk(className='tkinter')
  3. print(tkinter.TkVersion)
  4. top.mainloop()