Can anyone describe How to create a GUI in Python ?
Hi 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 :)