Advertisement
Guest User

Untitled

a guest
Jan 17th, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import PyQt5.QtWidgets as qt
  2.  
  3. class Zad1():
  4. def __init__(self):
  5. self.app=qt.QApplication([])
  6. self.okno=qt.QWidget()
  7.  
  8.  
  9.  
  10.  
  11. self.okno.show()
  12. self.app.exec_()
  13.  
  14. a1=Zad1()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement