working wiht files in python code example
Example 1: how to make all my files to work together in python
>>> import os
>>> entries = os.listdir('my_directory/')
Example 2: how to access a txt file through os library in python
my_file_handle=open("folder/test.txt")
my_file_handle.read()