What does tkinter module exactly do in python..searched internet..Found something related to GUI....But cld not get hold on it.. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What does tkinter module exactly do in python..searched internet..Found something related to GUI....But cld not get hold on it..

Python module doubt

27th Jul 2017, 11:51 AM
Bluebird
Bluebird - avatar
2 Answers
+ 2
Sounds interesting .. Will try it... Thanks for help.... 😁😁😁
29th Jul 2017, 2:40 AM
Bluebird
Bluebird - avatar
+ 1
You use it to make a GUI. For instance import tkinter as tk root = tk.Tk() root.mainloop() That will make a blank tkinter window. You can add widgets and bind commands to them.
28th Jul 2017, 3:59 PM
Arthur Tripp
Arthur Tripp - avatar