Python - File Path
================
import os
cwd=os.getcwd()
print(os.path.abspath(‘sample.txt’))
print(cwd)
#print(os.listdir(cwd))