Input function keeps giving me an EOFError in python in Sololearn but doesn't in other IDEs. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Input function keeps giving me an EOFError in python in Sololearn but doesn't in other IDEs.

If somebody knows what am doing wrong please point it out.Here is my code. https://code.sololearn.com/c6888Wa0HwUj/?ref=app

6th Dec 2019, 12:03 AM
John
John - avatar
2 Answers
+ 1
it's a limitation of SoloLearn playground. the issue is the while loop, playground is not a real terminal, your code gets executed on SoloLearn servers and returns the output it does not wait for the while loop to finish in this context. remove this part and keep the function check_password() only. password_trials = 1 while password_trials <= 3: try: check_password() except IndexError: print('password can\'t be blank') password_trials += 1
6th Dec 2019, 12:47 AM
Bahhaⵣ
Bahhaⵣ - avatar
0
It works that way though I wanted it to recur.Thanks.
11th Dec 2019, 2:24 PM
John
John - avatar