python select a file from folder code example
Example 1: get files in directory python
import os
files_and_directories = os.listdir("path/to/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()