Python GUI - PyQt VS TKinter Last Updated : 11 Dec, 2020 Comments Improve Suggest changes Like Article Like Report A GUI toolkit contains widgets that are used to create a graphical interface. Python includes a wide range of Interface implementations available, from TkInter (it comes with Python, ) to a variety of various cross-platform solutions, such as PyQt5, which is known for its more sophisticated widgets and sleek look. PyQt PyQt is a toolkit for graphical user interface (GUI) widgets. It is extracted from the library of Qt. PyQt is the product of the combination of the Python language and the Qt library. PyQt is coming with the Qt Builder. We will use it to get the python code from the Qt Creator. With the support of a qt designer, we can build a GUI, and then we can get python code for that GUI. PyQt supports all platforms including Windows, macOS and UNIX. PyQt can be used to create stylish GUIs, a modern and portable python framework. Code: Python3 # Import sys for handle the # exit status of the application. import sys # Importing required widgets from PyQt5.QtWidgets import QApplication from PyQt5.QtWidgets import QLabel from PyQt5.QtWidgets import QWidget # To create an instance of QApplication # sys.argv contains the list of # command-line argument app = QApplication(sys.argv) # To create an instance of application GUI # root is an instance of QWidget, # it provides all the features to # create the application's window root = QWidget() # adding title to window root.setWindowTitle('Geeks App') # to place txt at the coordinates root.move(60, 15) # to display text txt = QLabel('Welcome, Geeks!', parent = root) txt.move(60, 15) # Show application's GUI root.show() # Run application's main loop sys.exit(app.exec_()) Output: A simple app to display text using PyQt.Advantages of using PyQtCoding versatility –GUI programming with Qt is built around the idea of signals and slots for creating contact between objects. This allows versatility in dealing with GUI incidents which results in a smoother code base.More than a framework : Qt uses a broad variety of native platform APIs for networking, database development, and more. It provides primary access to them through a special API.Various UI components: Qt provides multiple widgets, such as buttons or menus, all designed with a basic interface for all compatible platforms.Various learning resources: As PyQt is one of the most commonly used UI systems for Python, you can conveniently access a broad variety of documentation.Disadvantages of using PyQtLack of Python-specific documentation for classes in PyQt5It takes a lot of time to grasp all the specifics of PyQt, meaning it's a pretty steep learning curve.If the application is not open-source, you must pay for a commercial license.Tkinter Tkinter is an open-source Python Graphic User Interface (GUI) library well known for its simplicity. It comes pre-installed in Python, so you don't even need to think about installing it. These characteristics make it a strong position for beginners and intermediates to begin with. Tkinter cannot be used for larger-scale projects. Code: Python3 # importing the module tkinter import tkinter as tk # create main window (parent window) root = tk.Tk() # Label() it display box # where you can put any text. txt = tk.Label(root, text="Welcome to GeekForGeeks") # pack() It organizes the widgets # in blocks before placing in the parent widget. txt.pack() # running the main loop root.mainloop() Output: A simple app to display text using tkinter.Advantages of using TkinterTkinter is easy and fast to implement as compared to any other GUI toolkit.Tkinter is more flexible and stable.Tkinter is included in Python, so nothing extra need to download.Tkinter provides a simple syntax.Tkinter is really easy to understand and master.Tkinter provides three geometry managers: place, pack, and grid. That is much more powerful and easy to use.Disadvantages of using TkinterTkinter does not include advanced widgets.It has no similar tool as Qt Designer for Tkinter.It doesn't have a reliable UI.Sometime, it is hard to debug in Tkinter.It is not purely Pythonic.Difference between PyQt and TkinterNo.BasisPyQt Tkinter 1.LicensePyQt is available under Riverbank Commercial License and GPL v3 (General Public License v 3.0) and if you do not wish to release your application under a GPL-compatible license, you must apply for a commercial license. Tkinter is open source and free for any commercial use.2.Ease of UnderstandingIt requires a lot of time for understanding all the details of PyQt.Tkinter is easy to understand and master due to a small library.3.DesignPyQt has a modern look and a good UI.Tk had an older design and it looks outdated.4.WidgetsthenPyQt comes with many powerful and advanced widgets. TkInter does not come with advanced widgets.5.UI BuilderPyQt have a Qt Designer tool which we can use to build GUIs than get python code of that GUI using Qt Designer.It has no similar tool as Qt Designer for Tkinter.6.InstallationPyQt is not included by default with Python installations.It is included in the standard Python library so no need to install it separately. Comment More infoAdvertise with us Next Article Python GUI - PyQt VS TKinter A amnindersingh1414 Follow Improve Article Tags : Python Difference Between Programming Language Python-PyQt Python-tkinter Python-gui +2 More Practice Tags : python Similar Reads Python Tkinter Python Tkinter is a standard GUI (Graphical User Interface) library for Python which provides a fast and easy way to create desktop applications. Tkinter provides a variety of widgets like buttons, labels, text boxes, menus and more that can be used to create interactive user interfaces. Tkinter sup 12 min read Python Tkinter Mainloop Tkinter is the standard GUI (Graphical User Interface) library for Python. It provides a powerful object-oriented interface to the Tk GUI toolkit. Understanding how the mainloop works in Tkinter is essential for creating responsive and interactive applications. This article delves into the intricaci 3 min read Python Tkinter - Message Python offers multiple options for developing a GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most commonly used method. It is a standard Python interface to the Tk GUI toolkit shipped with Python. Python with Tkinter is the fastest and easiest way to create GUI applicat 3 min read Tic Tac Toe Game using PyQt5 in Python In this article , we will see how we can create a Tic Tac Toe game using PyQt5. Tic-tac-toe, noughts, and crosses, or Xs and Os is a paper-and-pencil game for two players, X and O, who take turns marking the spaces in a 3Ã3 grid. The player who succeeds in placing three of their marks in a horizonta 5 min read What is Tkinter for Python? Tkinter is a standard Python GUI (Graphical User Interface) library that provides a set of tools and widgets to create desktop applications with graphical interfaces. Tkinter is included with most Python installations, making it easily accessible for developers who want to build GUI applications wit 2 min read Geometry Method in Python Tkinter Tkinter is a built-in Python module used for building desktop GUI applications. It's simple, powerful, and doesnât require any external installation. Tkinter provides many methods, one of them is the geometry() method and it is used to control the size and position of the GUI window.The geometry() m 2 min read Python Tkinter - Entry Widget Python offers multiple options for developing a GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most commonly used method. Python with Tkinter is the fastest and easiest way to create GUI applications. Creating a GUI using Tkinter is an easy task.In Python3 Tkinter is come 5 min read How to use HTML in Tkinter - Python? Prerequisite: Tkinter Python offers multiple options for developing GUI (Graphical User Interface). Out of all the GUI methods, Tkinter is the most commonly used method. It is a standard Python interface to the Tk GUI toolkit shipped with Python. Python with Tkinter is the fastest and easiest way to 2 min read Python | after method in Tkinter Tkinter provides a variety of built-in functions develop interactive and featured GUI (Graphical User Interface). after() function is also a Universal function which can be used directly on the root as well as with other widgets. after(parent, ms, function = None, *args)  Parameters: parent: is th 2 min read PyQt5 QtSql - Python PyQt provides us UI features which can be useful in number of ways to build our applications using all the features and widgets of PyQt. Moreover PyQt provides us the facility to integrate our database in our application. We can integrate any database through it some of them are- MySQL, SQLITE etc. 3 min read Like