+ 6
EOF error
what is EOF error in python
10 Respostas
+ 5
You need to provide all the inputs at once in sololearn ,it is not interactive like visual Studio or any other ide
+ 12
An EOF Error is raised when a built-in function like input() or raw_input() do not read any data before encountering the end of their input stream.
The file methods like read() return an empty string at the end of the file.
+ 5
Could you see my code and tell the corrections
My code above runs in visual Studio but in this Sololearn it is showing EOF error
+ 5
The code wont work in sololearn. Interactive code doesnt work.
+ 4
Show your code please
+ 4
You may find answer in:-
1) https://www.google.com/search?q=what+is+EOF+error+in+JUMP_LINK__&&__Python__&&__JUMP_LINK&rlz=1C9BKJA_enUS705US705&oq=what+is+EOF+error+in+Python&aqs=chrome..69i57j0l3.59278j0j4&hl=en-US&sourceid=chrome-mobile&ie=UTF-8
2) https://www.cs.bu.edu/courses/cs108/guides/debug.html
+ 4
Thanks
+ 3
See this code. Is this the cause?
If so, dont create a empty function. Atleast use a 'pass' command or a comment
https://code.sololearn.com/copBJcz4fMZ4/?ref=app
+ 2
so, here does it mean that we cannot use multiple input in Sololearn?