13 lines
202 B
Python
Executable File
13 lines
202 B
Python
Executable File
#! /usr/bin/python
|
|
#Datei: pushbutton.py
|
|
|
|
import sys
|
|
from PyQt6.QtWidgets import QApplication, QPushButton
|
|
|
|
app = QApplication(sys.argv)
|
|
|
|
window = QPushButton("Bitte klicken")
|
|
window.show()
|
|
|
|
app.exec()
|