Answers for "print path of module containing python file"

0

finding path of a module in python

from inspect import getmodule
print(getmodule(os))
Posted by: Guest on July-27-2021
0

get the path of a module in python

import inspect
inspect.getfile(<mdule name>)
Posted by: Guest on October-14-2021

Code answers related to "print path of module containing python file"

Python Answers by Framework

Browse Popular Code Answers by Language