https://s3-us-west-2.amazonaws.com/secure.notion-static.com/8cf6b086-c26f-4c0c-b66d-69c65933fd2f/Screen_Shot_2021-07-27_at_1.18.32_AM.png

Absolute File Path

Working Directory

Relative File Path

Going upward in the directory tree

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/d14d7331-f40b-4a19-9e67-d234b7a673ad/Screen_Shot_2021-07-27_at_1.26.49_AM.png

#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)