Comment trouver le chemin d'un module 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