Answers for "how to open a file thats in a dirrecoty so it launches 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

how to make all my files to work together in python

>>> import os
>>> entries = os.listdir('my_directory/')
Posted by: Guest on September-03-2020

Code answers related to "how to open a file thats in a dirrecoty so it launches python"

Python Answers by Framework

Browse Popular Code Answers by Language