全部 新建

user:thomas 由使用者建立的 Gists

title:mygist Gists 的標題

filename:myfile.txt Gists 的檔案名稱

extension:yml Gists 的副檔名

language:go Gists 的程式語言

topic:homelab gists with given topic

登錄


全部 新建 登錄

All gists matching topic importlib

倒序排序 創建
順序排序 創建
倒序排序 更新
順序排序 更新

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

0 喜歡
0 分支
3 檔案
最後活躍 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() 函式

timmy / 檢查 Python 套件是否已安裝

0 喜歡
0 分支
1 檔案
最後活躍 10 months ago
這段程式碼用於檢查 Python 環境中是否安裝了 numpy 模組。 如果 numpy 已安裝,則輸出 "numpy is installed",否則輸出 "numpy is not installed"。
dependency-check importlib module-detection package-management python
1 from importlib.util import find_spec
2
3 if find_spec("numpy") is not None:
4 print("numpy is installed")
5 else:
6 print("numpy is not installed")
上一頁 下一頁

由 Opengist 提供支持 ⋅ Load: 36ms⋅

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