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
'Dev > Python' 카테고리의 다른 글
[Python] 산술연산자 (0) | 2020.08.08 |
---|