
* Create PySide2.py * Update readme.md * remove "!" Co-authored-by: Richie Bendall <richiebendall@gmail.com> Co-authored-by: Richie Bendall <richiebendall@gmail.com>
8 lines
147 B
Python
8 lines
147 B
Python
import sys
|
|
from PySide2.QtWidgets import QApplication, QLabel
|
|
|
|
app = QApplication(sys.argv)
|
|
label = QLabel("Hello World")
|
|
label.show()
|
|
app.exec_()
|