Answers for "get path of function python"

2

python os get path

import pathlib
pathlib.Path().resolve()
Posted by: Guest on December-12-2021
0

finding path of a module in python

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

Python Answers by Framework

Browse Popular Code Answers by Language