Dev/Python

[Python] from import와 import의 차이

hau 2020. 8. 8. 16:48
728x90

cloudrain21.com/python-difference-between-import-from-import

# os 모듈의 getpid 를 getpid 라는 이름으로 import
>>> from os import getpid                         

# 현재 scope 에서는 os 라는 존재는 모르고
# os.getpid 를 가리키는 getpid 만 있으므로 에러
>>> os.getpid()

 

728x90