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 | 31 |
Tags
- Pandas
- 티스토리
- Visualization
- 매틀랩
- 텐서플로
- matplotlib
- 서평단
- 서평
- python visualization
- tensorflow
- 파이썬 시각화
- 파이썬
- 블로그
- 한빛미디어서평단
- MySQL
- 한빛미디어
- MATLAB
- Google Analytics
- Linux
- SQL
- Tistory
- 리눅스
- 딥러닝
- Ga
- Blog
- 월간결산
- 통계학
- 시각화
- 독후감
- Python
Archives
- Today
- Total
목록PUSH BUTTON (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