0
How to add inputs in python?
Ive'd forgotten how to print inputs Please fix or give tips to this code: https://code.sololearn.com/chgOlOgkwkgS/?ref=app
2 ответов
+ 1
Take the >>> off both lines and align everything to the left.
Then remove the space between print and (p).
p = input("what is your name? ")
print(p)
0
Thanks