Answers for "how to read file in same directory in python"

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
0

python read file from same directory

f = open(os.path.join(sys.path[0], "test.html"), "r")
print(f.read())
f.close()
Posted by: Guest on December-05-2021

Code answers related to "how to read file in same directory in python"

Python Answers by Framework

Browse Popular Code Answers by Language