In this article we will see how to adjust the size of the push button according to the text. We know we can change the size of button using
Python3 1==
Output :

resize method every time resizing it manually is difficult. Therefore, we have adjustSize method which automatically adjust the size of the push button according to the text in it.
Syntax : button.adjustSize() Argument : It takes no argument. Action performed : It changes the size of button according to the text in it.Code :
# importing libraries
from PyQt5.QtWidgets import *
from PyQt5.QtGui import *
from PyQt5.QtCore import *
import sys
class Window(QMainWindow):
def __init__(self):
super().__init__()
# setting title
self.setWindowTitle("Python ")
# setting geometry
self.setGeometry(100, 100, 600, 400)
# calling method
self.UiComponents()
# showing all the widgets
self.show()
# method for widgets
def UiComponents(self):
# creating a push button
button = QPushButton("CLICK", self)
# setting geometry of button
button.setGeometry(200, 150, 200, 40)
# adjusting the size of button
button.adjustSize()
# adding action to a button
button.clicked.connect(self.clickme)
# action method
def clickme(self):
# printing pressed
print("pressed")
# create pyqt5 app
App = QApplication(sys.argv)
# create the instance of our Window
window = Window()
# start the app
sys.exit(App.exec())
