Python Periksa apakah variabel adalah modul

from types import ModuleType

isinstance(obj, ModuleType)
Thoughtful Toad