- 1
guys do python idle here supports only 1 input?
4 odpowiedzi
+ 1
Code is valid but when you press run you need to input
Name then in other line Surname and in next line age
0
In sololearn to add multiple python(or in other languege) inputs you need to input everything on separate lines after you press run
0
here is the code:
name=input()
surname=input()
age=int(input())
print(name,surname ,"is ",age)
0
worked