PyQt5 Window Creation with Label Display

  • Share this:

Code introduction


This function creates a simple PyQt5 window with a label that displays the given text.


Technology Stack : PyQt5

Code Type : PyQt5 application

Code Difficulty : Intermediate


                
                    
import sys
from PyQt5.QtWidgets import QApplication, QWidget, QVBoxLayout, QLabel

def create_window_with_label(text):
    # This function creates a simple PyQt5 window with a label displaying the given text.

    app = QApplication(sys.argv)
    window = QWidget()
    layout = QVBoxLayout()
    label = QLabel(text)
    layout.addWidget(label)
    window.setLayout(layout)
    window.show()
    sys.exit(app.exec_())

# JSON representation of the function and its details                
              
Tags: