Python Jak otworzyć plik w innym katalogu w Mac

import os
f = open (os.path.expanduser("~/Desktop/somedir/somefile.txt"))
Vast Vulture