파일 cal_test
더하는 함수
def add(n1, n2) :
return n1 + n2
빼는 함수
def sub(n1, n2) :
return n1 - n2
곱하는 함수
def mul(n1, n2) :
return n1 * n2
나누는 함수
def div(n1, n2) :
return n1 / n2
모듈에 사용될 파일을 .py 확장자로 다운로드 한 후, anaconda3=>Libd에 저장해주기.
모듈 사용해보기
import cal_test as cal
# 더하는 기능 실행해보기
cal.add(4, 9) # 함수 속성 확인 : shift + tab
# 13
# 빼는 기능 실행해보기
cal.sub(9, 3)
# 6
# 기능 실행하는 다른 방법
from cal_test import mul
# mul(3, 8)
# 24
댓글