Answers for "how to open a file in the same directory as a python script#"

0

python open file same folder

import os
with open(os.path.join(sys.path[0], "my_file.txt"), "r") as f:
    print(f.read())
Posted by: Guest on June-10-2020

Code answers related to "how to open a file in the same directory as a python script#"

Python Answers by Framework

Browse Popular Code Answers by Language