Here is a simple code I was playing with
input("This is test:")
input("This is test:")
input("This is test:")
So, it prompted me to give some input and when I entered input as numbers, I got the following output.
This is test:1
This is test:2
This is test:3
So, I am wondering where the extra lines coming from. The documentation says that input
function strips newline character at the end. So, where do extra lines come from ?
Thanks