728x90
반응형
Module import하기
ceil ➡ 올림
fabs ➡ 절대값
fsum ➡ 합계
import math
print(math.ceil(1.2))
print(math.fabs(-1.2))
# 2
# 1.2
import math를 하게 되면 사용하지 않는 기능들 모두를 가져오기때문에 필요한 기능만 import하는게 좋음
from math import ceil, fsum
print(math.ceil(1.2))
print(math.fsum([1, 2, 3]))
# 2
# 6.0
❓ import할때 fsum의 이름을 변경하고 싶다면
from math import fsum as result_sum
print(math.result_sum([1, 2, 3]))
# 6.0
내가 정의한 함수를 import하여 사용하고 싶을때
1️⃣ 기능 정의하기
# file name is calculator
def plus(a, b):
return a + b
def minus(a, b):
return a - b
2️⃣ import해서 쓰기(파일명, 정의한 기능 import)
from calculator import plus
print(plus(1, 2))
# 3
💡 python은 print 함수가 무한으로 매개변수를 가질 수 있음(django를 쓰기위해 알아둬야할 개념!)
반응형
'프로그래밍 > Python' 카테고리의 다른 글
web Scrapping을 위한 requests와 BeautifulSoup 설치 (0) | 2020.12.23 |
---|---|
개발환경 세팅 (0) | 2020.12.23 |
조건문 if & 반복문 for (0) | 2020.12.22 |
Function 정의 (0) | 2020.12.21 |
Built in Functions (0) | 2020.12.21 |