Python - sys , modules, path
sys.modules 와 sys.path의 차이점을 서술해 주세요.
sys 도 import 해야하는 모듈입니다. 파이썬은 sys 모듈의 위치를 어떻게 찾을 수 있을까요?
Absolute path와 relative path의 차이점을 서술해 주세요.
calculator 패키지 만들기
참고 자료: Python Tutorial for Beginners 9: Import Modules and Exploring The Standard Library
package, modules
파이썬은 패키지와 모듈로 효율적으로 관리할 수 있다.
path
sys.path
우리가 module 을 import 할때 경로를 찾는다. 그리고 그 경로는 sys.path 라는 list 에 저장되어있다.
import sys
print(sys.path)
['현재 디렉토리' ...]
#디렉토리 리스트 형태로 나타난다.
absolute and relative path
Author And Source
이 문제에 관하여(Python - sys , modules, path), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@coldfeet0816/Python-sys-modules-path저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)