Answers for "how to get os path in python"

1

python file location path

import os

print('getcwd:      ', os.getcwd())
print('__file__:    ', __file__)
Posted by: Guest on August-23-2020
0

path of current working directory with os module python

import os
cwd = os.getcwd()

my_file='image.png'
file_path = os.path.join(cwd, my_file)
file_path
Posted by: Guest on July-04-2021
0

python get os

>>> import os
>>> os.name
'posix'
>>> import platform
>>> platform.system()
'Linux'
>>> platform.release()
'2.6.22-15-generic'
Posted by: Guest on July-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language