0
What does this error mean? Please correct my code.
s = input("Identify yourself: ") print(s) t = input("Where are you from: ") print(t) Gives an error saying: Identify yourself: Where are you from: Traceback (most recent call last): File "..\Playground\", line 5, in <module> t = input("Where are you from: ") EOFError: EOF when reading a line
2 Answers