python browse file without path code example
Example 1: python open file relative to script location
import os
path = 'a/relative/file/path/to/this/script/file.txt'
with open(os.path.join(os.path.dirname(__file__), path), 'r') as input_file:
content = input_file.read()
Example 2: open file in python directory
path = 'C:\\Users\\Username\\Path\\To\\File'
file=open(path, "r")