Answers for "input pyhton 3"

1

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}")
Posted by: Guest on October-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language