Como acessar um arquivo txt através da biblioteca do SO no Python

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