Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

input python

# we make the input to take the name of user
name = input("inter your name : ")
# this input to take the age
age = input("inter your age : ")

# the print to say to user hi and this is your age
print(f"hi {name} your age is {age}")
 
PREVIOUS NEXT
Tagged: #input #python
ADD COMMENT
Topic
Name
3+7 =