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 long_module_name
次の方法でエイリアスを指定することもできます。
lmn = long_module_name
コードでこの方法で行う理由はありませんが、インタラクティブインタープリターで役立つことがあります。
はい、モジュールはエイリアス名でインポートできます。 asキーワードを使用します。見る
import math as ilovemaths # here math module is imported under an alias name
print(ilovemaths.sqrt(4)) # Using the sqrt() function