Absolute File Path

Working Directory

Relative File Path

Going upward in the directory tree

#Absolute
with open("/Users/andchang/Desktop/my_file.txt") as file:
contents = file.read()
print(contents)

#Relative
with open("../../Desktop/my_file.txt") as file:
contents = file.read()
print(contents)