Todos Novo

user:thomas gists created by user

title:mygist gists with given title

filename:myfile.txt gists having files with given name

extension:yml gists having files with given extension

language:go gists having files with given language

topic:homelab gists with given topic

Entrar


Todos Novo Entrar

All gists matching topic plugin-loader

Mais recente criado
Menos recente criado
Mais recente atualizado
Menos recente atualizado

timmy / 使用 importlib 進行動態模組載入

0 curtidas
0 bifurcações
3 arquivos
Última atividade 9 months ago
importlib 允許在執行時動態載入模組,適用於 外部插件管理、模組熱加載、延遲載入以提升效能 等場景。
dynamic-import importlib module-management plugin-loader python
1 import importlib
2
3 # 動態載入內建模組
4 math_module = importlib.import_module("math")
5 print(math_module.sqrt(16)) # 4.0
6
7 # 動態載入自訂模組
8 module_name = "my_module" # 假設有 my_module.py
9 custom_module = importlib.import_module(module_name)
10 print(custom_module.hello()) # 假設 my_module 有 hello() 函式
Próximo Anterior

Desenvolvido por Opengist ⋅ Load: 22ms⋅

Português
Čeština Deutsch English Español Français Magyar Italiano 日本語 Polski Português Русский Türkçe Українська 中文 繁體中文