how to work with files in python code example
Example 1: how to reference a file in python
with open("filename.txt","r") as f:
contents = f.read()
Example 2: how to make all my files to work together in python
>>> import os
>>> entries = os.listdir('my_directory/')