from math as mt
mt.pow(3,3)
>>27
#factorial(3) = 1*2*3
from math import factorial as fa
fa(3)
>>6
파이썬에서 라이브러리를 사용할때 from , import 형태로 불러온다.
*pow()지수승 구하는 함수
math 라이브러리에서 모든 함수를 임포트
from math import *
math.pow(3,3)
>>27
math 라이브러리를 임포트
import math
math.pow(3,3)
>>27
import 에서 함수명을 각각 불러올 경우에는 해당 함수를 바로 사용할 수 있다.
from math import pow,factorial
pow(3,3)
>>27
factorial(3)
>>6
라이브러리나 함수명이 길경우에는 매번 작성시 번거로울 수 있다. 그럴때는 다음과 같이 변경이 가능하다.
from math as mt
mt.factorial(3)
>>6
#factorial(3) = 1*2*3
from math import factorial as fa
fa(3)
>>6
반응형
'파이썬 > 파이썬 기초' 카테고리의 다른 글
파이썬 중첩함수의 실행 (0) | 2020.09.29 |
---|---|
python json - load 와 loads (0) | 2020.07.08 |
파이썬 엑셀 다루기 기초 - 읽기 (openpyxl) (0) | 2020.06.03 |
파이썬 엑셀 다루기 기초 - 쓰기 (openpyxl) (0) | 2020.06.03 |
파이썬(python) 정규식 사용 예제 (0) | 2020.06.02 |