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
- MATLAB
- 독후감
- matplotlib
- 서평
- 매틀랩
- 파이썬 시각화
- 리눅스
- MySQL
- 통계학
- 파이썬
- Pandas
- 시각화
- Linux
- 티스토리
- Google Analytics
- tensorflow
- Ga
- python visualization
- 블로그
- Visualization
- 한빛미디어서평단
- 텐서플로
- Blog
- 한빛미디어
- Tistory
- 서평단
- 월간결산
- 딥러닝
- Python
- SQL
Archives
- Today
- Total
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) 공학용 계산기 제작
- 계산기 기능 상속
- 제곱 기능 추가
- factorial 기능 추가
class scientific_calculator(calculator):
def squared(self, inp1, inp2):
print(inp1 ** inp2)
def factorial(self, inp1):
for i in range(inp1-1, 0, -1):
inp1 = inp1 * i
print(inp1)
5) 인스턴스 생성
new_cal = scientific_calculator()
6) 확인
(1) 일반 계산기 확인
new_cal.add(1, 2)
new_cal.sub(1, 2)
new_cal.mul(2, 3)
new_cal.div(4, 2)
- 결과
3
-1
6
2.0
(2) 추가 기능 확인
new_cal.squared(2, 4)
new_cal.factorial(3)
- 결과
16
6
2. 참고
- 점프 투 파이썬
'ComputerLanguage_Program > PYTHON' 카테고리의 다른 글
[PYTHON] asyncio를 통한 비동기 처리 실습 (0) | 2020.05.26 |
---|---|
[PYTHON] yield 실습하기 (0) | 2020.05.25 |
[PYTHON] class 를 이용하여 계산기 만들기 (0) | 2020.05.23 |
[PYTHON] 전역변수(global) 사용하기 (0) | 2020.05.21 |
[PYTHON] *args, **kwargs (0) | 2020.05.19 |
Comments