Jak uzyskać dostęp do pliku TXT za pośrednictwem biblioteki OS w Python

my_file_handle=open("folder/test.txt")
my_file_handle.read()
CoderX