We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46e1129 commit 1f09009Copy full SHA for 1f09009
pyqt-calculator-tutorial/examples/hello.py
@@ -1,4 +1,4 @@
1
-"""Simple Hello World example with PyQt6."""
+"""Simple Hello, World example with PyQt6."""
2
3
import sys
4
@@ -19,7 +19,7 @@
19
window = QWidget()
20
window.setWindowTitle("PyQt App")
21
window.setGeometry(WIN_X, WIN_Y, WIDTH, HEIGHT)
22
-helloMsg = QLabel("<h1>Hello World!</h1>", parent=window)
+helloMsg = QLabel("<h1>Hello, World!</h1>", parent=window)
23
helloMsg.move(LABEL_X, LABEL_Y)
24
25
# 4.Show your application's GUI
0 commit comments