Python ouvrir le même dossier

import os
with open(os.path.join(sys.path[0], "my_file.txt"), "r") as f:
    print(f.read())
Sparkling Spider