PyQt5 – How to hide label | label.setHidden method
In this article, we will see how we can hide the Label in the PyQt5 application. A label is a graphical control element which displays text on a form. It is usually a static control; having no interactivity. A label is generally used to identify a nearby text box or another widget. In order to hide the label we use setHidden() method, this method allows user to set if the widget should be visible or hidden, it belongs to the QWidget class.
Syntax : label.setHidden(True) Argument : It takes bool as an argument.
Code :
Python3
Output :
As we can see the label 2 is hidden in the output window.
Please Login to comment...