i just made the program
j = input("choose a file to read")
l = open(j,"r")
e =l.read()
print e
ran it, and typed in README.txt, which is a real text file located in the same folder as the program, but every time when I type README.txt, i get an error message saying
error FileName: README not defined.
I have python 3.6
. Does anyone know what i am doing wrong?