open directory python os code example
Example 1: open file in python directory
path = 'C:\\Users\\Username\\Path\\To\\File'
file=open(path, "r")
Example 2: how to access a txt file through os library in python
my_file_handle=open("folder/test.txt")
my_file_handle.read()