0
What is EOF error? And how to solve it
2 Antworten
+ 4
ÂÑKÛR KÛMÂR EOF End Of File. If your problem is related to input then this question is already asked check it.
https://www.sololearn.com/Discuss/2970643/?ref=app
https://www.sololearn.com/discuss/2873705/?ref=app
https://www.sololearn.com/discuss/2727595/?ref=app
https://www.sololearn.com/discuss/721608/?ref=app
https://www.sololearn.com/discuss/30086/?ref=app
https://www.sololearn.com/discuss/2958212/?ref=app
https://www.sololearn.com/discuss/2442284/?ref=app
https://www.sololearn.com/discuss/2028823/?ref=app
https://www.sololearn.com/discuss/2256136/?ref=app
https://www.sololearn.com/discuss/1461082/?ref=app
https://www.sololearn.com/discuss/630084/?ref=app
https://www.sololearn.com/discuss/185455/?ref=app
https://www.sololearn.com/discuss/180208/?ref=app
https://www.sololearn.com/discuss/810776/?ref=app
https://www.sololearn.com/discuss/454739/?ref=app
https://www.sololearn.com/discuss/2450204/?ref=app
https://www.sololearn.com/discuss/2409726/?ref=app
If not share your code.
+ 2
Separate your inputs values into multi lines
Suppose you have this sinole code
a=input()
b=input()
print('hello',a,b)
As you have multiple inputs, you must insert your inputs into multi lines, then sololearn app will assign the content of the first line as value of a and the content of the second line as value if b and so on
So EOF occured 2hen your program use multiple.input statements
As editor is not pausing code execution when the input dialog is shown, so when dialog is displayed and in the same time code continue execution and encounter another input statement, then in this case EOF is occured