[python] 파이썬에서 가져온 모듈의 별칭을 정의 할 수 있습니까?

파이썬에서 가져온 모듈의 별칭을 정의 할 수 있습니까?

예를 들어 :

import a_ridiculously_long_module_name

… 그래서 ‘short_name’이라는 별칭이 있습니다.



답변

import a_ridiculously_long_module_name as short_name

또한 작동

import module.submodule.subsubmodule as short_name


답변

여기를 확인하십시오

import module as name

또는

from relative_module import identifier as name


답변

완료 한 경우 :

import long_module_name

다음과 같이 별명을 지정할 수도 있습니다.

lmn = long_module_name

코드에서 이런 식으로 할 이유는 없지만 대화 형 인터프리터에서 유용하게 사용됩니다.


답변

예, 별명으로 모듈을 가져올 수 있습니다. 사용 으로 키워드. 보다

import math as ilovemaths # here math module is imported under an alias name
print(ilovemaths.sqrt(4))  # Using the sqrt() function


답변

모듈에서 TAGNAME을 ALIAS로 가져 오기


답변