input in pyython code example

Example 1: input python

name = input("Enter your name: ")

#Printing the variable (name)
print("hello",name)

Example 2: python input

def age(number):
    number0 = int(number)
    if number0 >= 2000:
        print('I bet you are lying!!')
    elif number0 >= 110:
        print('Heck! Are you dead yet??')

    elif number0 >= 69:
        print('You are so old!')
    else:
        print('Good.')

def name(text):
    if text == 'Harry':
        print('HAHA Thats my name!!')
    else:
        print('Cool.')

def yes(text1):
    if text1 == 'no' or text1 == 'No':
        print('Okay,then')
    elif text1 == 'yes' or text1 == 'Yes':
        print('A pig fell in the mud!')
    else:
        print('Huh?')

x = input('How old are you?')
age(x)

y = input('What is your name?')
name(y)

e = input('Want to here a dirty joke??')
yes(e)

t = 'Thank you for your information!!'
print(t)