0
What the error EOF mean?? Need help!!
When I run the code is come this error Traceback (most recent call last): File "/data/user/0/ru.iiec.pydroid3/files/temp_iiec_codefile.py", line 8, in <module> word = input("enter the word: ") EOFError: EOF when reading a line https://code.sololearn.com/cgYqRumzvXlh/?ref=app
2 odpowiedzi
+ 2
Usually an EOF (End Of File) Error occurs when a program expects some input but none is provided. As it has happened on a line where you have input() statement, I'd assume that is your problem.
0
When I run the code