Как найти путь модуля Python
import imp
print("Location of Python os module sources:")
print(imp.find_module('os'))
print("\nLocation of Python time module sources:")
print(imp.find_module('time'))
Programmer of empires