最佳答案
如何检查是否在代码中导入了模块?
if not has_imported("somemodule"):
print('you have not imported somemodule')
我之所以要检查是否已经导入了一个模块,是因为我有一个不想导入的模块,因为有时它会弄乱我的程序。