![]() |
VOOZH | about |
Python provides wxpython module which allows us to create high functional graphical user interface. It is an Open Source module, which means it is free for anyone to use and the source code is available for anyone to look and modify.
It is implemented as a set of extension modules that wrap the GUI components of wxWidgets library which is written in C++. It is cross platform GUI toolkit for python, Phoenix version Phoenix is the improved next-generation wxPython and it mainly focused on speed, maintain ability and extensibility.
Install using this command:
pip install wxpython
Creating GUI using wxpython:
Example #1: A simple GUI application which says GEEKS FOR GEEKS using wxpython.
Output:
Example #2: Creating Buttons using wx module
Output:
Example #3: CheckBox using wxpython
Output:
Example #4: RadioButtons using wxpython