📌 Python
Python - import
U-chan Seon
2021. 1. 19. 21:45
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