Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 통계학
- Pandas
- 한빛미디어서평단
- Blog
- MATLAB
- 서평
- 텐서플로
- 시각화
- 블로그
- matplotlib
- 딥러닝
- Linux
- Google Analytics
- 월간결산
- 한빛미디어
- 매틀랩
- SQL
- 서평단
- 파이썬
- Ga
- 독후감
- Python
- MySQL
- python visualization
- 티스토리
- tensorflow
- 리눅스
- Visualization
- Tistory
- 파이썬 시각화
Archives
- Today
- Total
목록pyqt pushbutton (1)
pbj0812의 코딩 일기
[PYTHON] PyQt를 활용한 radio button + push button 어플
0. 목표 - PyQt를 활용한 radio button + push button 어플 1. 플로우 차트 2. 실습 1) library 호출 import sys from PyQt5.QtWidgets import * 2) class 및 함수 생성 (1) initUI - 버튼 생성 - 버튼 위치 생성 (2) buttonClick - 1번 라디오 버튼이 클릭된 상태면 1 출력, 2번 라디오 버튼이 클릭된 상태면 2 출력 - 이를 push 버튼(btn)과 연결 class MyApp(QWidget): def __init__(self): super().__init__() self.initUI() def initUI(self): self.btn = QPushButton('Search') self.btn.clicked...
ComputerLanguage_Program/PYTHON
2020. 9. 24. 00:36