파이썬에 대한 지식의 깊이는 얕지만, 여러 날 고민했던 문제를 해결하게 되어 기록할 겸 작성합니다. 1. 문제점아래와 같은 예제 코드를 복사해서 작성하고,https://wikidocs.net/21920import sysfrom PyQt5.QtWidgets import QApplication, QWidgetclass MyApp(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): self.setWindowTitle('My First Application') self.move(300, 300) self.resize(400, 200) ..