give path to file in python code example
Example 1: python how to open a file in a different directory in mac
import os
f = open (os.path.expanduser("~/Desktop/somedir/somefile.txt"))
Example 2: python file location path
import os
print('getcwd: ', os.getcwd())
print('__file__: ', __file__)