Can anyone describe How to create a GUI in Python ?
GUI in Python
1489
08-Jun-2018
Updated on 08-Jun-2018
Prakash nidhi Verma
08-Jun-2018Hi Franco, I think GUI is always interesting part in an Application.
Python provides various options for developing graphical user interfaces (GUIs).
Most important are listed below:
*Tkinter
*Kivy
*PyQt
*PyGobject
*wxPython
*JPython
Mostly developers uses TKinter because it's having standard GUI library for Python.
Event Triggered by user is really feasible in TKinter and the code for create a window page in GUI is shown below:
Glad to help, I hope it's useful for you.
Happy Coding :)