Comment accéder à un fichier txt via la bibliothèque OS dans Python

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