This code works in IDLE but not in the commandline. Why the difference?
poem = 'poem.txt'
f = file(poem)
while True:
line = f.readline()
if len(line) == 0:
break
print line,
f.close()
The poem.txt file exists (it is a string). The shell output is this:
"Programming is fun When the work is done if you wanna make your work also fun: use Python!"
The commandline output is this:
"No such file or directory: 'poem.txt'"
The poem.txt file is in the same folder as the .py file. What is going wrong here?
./poem.txtinstead ofpoem.txt– Lelouch Lamperouge Dec 30 '11 at 20:57C:/Users/Python/filepractice.pyEnter– codeninja Dec 30 '11 at 20:59.is Linux for "This Directory"...is the parent directory. – S.Lott Dec 30 '11 at 21:28