“Wie man einen Modulpfad in Python bekommt” Code-Antworten

So finden Sie den Weg eines Python -Moduls


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

Wie man einen Modulpfad in Python bekommt

import a_module
print(a_module.__file__)
HosseinZaaferani

Ähnliche Antworten wie “Wie man einen Modulpfad in Python bekommt”

Fragen ähnlich wie “Wie man einen Modulpfad in Python bekommt”

Weitere verwandte Antworten zu “Wie man einen Modulpfad in Python bekommt” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen