- 1
what the meaning of "split multiple inputs into separate lines"
in input function
3 Respostas
+ 5
#You have to give all inputs at one go.
#If you program is:
name = input('give me your name please\n')
age = int(input('and your age\n'))
print ( name * age)
#Your input should be given like this:
Paul
15
Then press submit.
(I lied about my age).
0
i dont know