0
What is an EOFError?
2 Answers
+ 6
EOF = End Of File
An EOF error is probably raised when you try to read a file when you are already at the end of it.
0
So like this would be an EOF error:
a="Hello world
print(a)
I forgot to put an ending for quotes so it doesn't know where to stop.



