📜  取消导入库 python 代码示例

📅  最后修改于: 2022-03-11 14:45:18.953000             🧑  作者: Mango

代码示例1
# Import your library
import time

# Remove your library (change as needed)
# You'll lose access to it
# Python will still keep a copy around in the cache though
del time
# If you want to reload it (> Python 3.4):
import importlib, time
importlib.reload(time)