Answers for "what path does pythons os.path module use"

1

how to find the path of a python module

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'))
Posted by: Guest on June-25-2021
0

os.path module in python 3

import os.path
Posted by: Guest on February-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language