input function
this INPUT gives me s = input("Enter something please: ") print(s) Enter something please as OUTPUT this INPUT gives me s = input("Enter something please: ") k = input(" enter your ID no :") print(k) m = input(" Adress ") print(m) j = input(" Date of Birth : ") print(j) gives me Enter your name : Enter your no : Traceback (most recent call last): File "./Playground/file0.py", line 3, in <module> k = input(" Enter your no :") EOFError: EOF when reading a line as OUTPUT CAN i KNOW WHY ??