# calculator.py
class Calculator(object):
"""Calculator class"""
def __init__(self):
pass
@staticmethod
def add(a, b):
return a + b
@staticmethod
def subtract(a, b):
return a - b
@staticmethod
def multiply(a, b):
return a * b
@staticmethod
def divide(a, b):
return a / b
이 계산기 클래스의 모든 함수에 대해서 테스팅 코드를 작성해야 한다면, 다음과 같이 작성할 수 있을 것입니다.
'📌 Python' 카테고리의 다른 글
python - ImportError: attempted relative import with no known parent package (0) | 2021.01.08 |
---|---|
Python - decorator (0) | 2021.01.06 |
python - assertion (0) | 2021.01.06 |
python - 이상형이 뭐에요? (2) | 2020.09.09 |
python - 리스트, 딕셔너리, 집합 (0) | 2020.09.09 |