Answers for "python iunput"

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
1

input python

name = input("What is your name: ")

print(name)

if name == "Jeff":
  print("My name Jeff")
Posted by: Guest on September-24-2021

Python Answers by Framework

Browse Popular Code Answers by Language