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
- Google Analytics
- Pandas
- 독후감
- MySQL
- SQL
- Python
- Ga
- Tistory
- 한빛미디어
- MATLAB
- 한빛미디어서평단
- matplotlib
- 통계학
- 월간결산
- 서평단
- 파이썬
- 티스토리
- 서평
- Linux
- 매틀랩
- 시각화
- python visualization
- Visualization
- 텐서플로
- Blog
- 딥러닝
- 파이썬 시각화
- 리눅스
- 블로그
- tensorflow
Archives
- Today
- Total
목록계산기 코드 (1)
pbj0812의 코딩 일기
[PYTHON] 클래스 상속을 통한 공학용 계산기 제작
0. 목표 - class 상속을 통해 공학용 계산기 제작 1. 실습 1) 일반 계산기 제작 class calculator: def add(self, inp1, inp2): print(inp1 + inp2) def sub(self, inp1, inp2): print(inp1 - inp2) def mul(self, inp1, inp2): print(inp1 * inp2) def div(self, inp1, inp2): print(inp1 / inp2) 2) 인스턴스 생성 cal = calculator() 3) 확인 cal.add(1, 2) cal.sub(1, 2) cal.mul(2, 3) cal.div(4, 2) - 결과 3 -1 6 2.0 4) 공학용 계산기 제작 - 계산기 기능 상속 - 제곱 기능 추가 ..
ComputerLanguage_Program/PYTHON
2020. 5. 24. 22:33