I am going through a tutorial and have come to opening a file. I'm running it
in Command Prompt, but I know there is no problem with that because I have been running
code in it without problems.
Here is the code I'm supposed to be typing:
f = open('newfile.txt','r+')
Yep, one line! But I'm getting this error: "No such file or directory". I do not have a
file there, but I thought you created a file with the same code?
What am I doing wrong?
- WolfShield