import
import를 사용하여 해당 모듈 전체를 import 할 수 있다.
import math
math.pi
from import
해당 모듈에서 특정한 타입만 import 할 수 있다.
from math import pi
from math import cos
from math import *
모듈 내의 모든 기능을 import
이것은 권장하지 않는다.
왜냐하면 각각의 모듈내에서 이름이 겹칠 수 있기 때문이다.
따라서 전체를 import 하는 것은 지양해야 한다.
as
from math as m
m.cos
m.sin
'📌 Python' 카테고리의 다른 글
Python - __init__ (0) | 2021.01.20 |
---|---|
Python - class, object (0) | 2021.01.20 |
Python - lambda 함수 (0) | 2021.01.19 |
Python - variable length argument(가변길이 인자) (0) | 2021.01.19 |
Python - local 변수, global 변수 (0) | 2021.01.19 |