+ 1
how to input anything >>>input("Enter something please:")
how to input I did not understand plz help me
4 Respuestas
+ 5
a=input("enter a value:")
print(a)
output:
enter a value:7
7
hope u understand!
+ 2
to input you need to create a variable for inputting .....
var = input("enter something ")
here the input is gone into variable var
+ 1
input:
x=input("enter a value")
y=3
print (x+y)
output:
enter a value 6
9
+ 1
thank you good answers