how to get input with python code example

Example 1: python input

#Collecting The Input As A Variable:#
name = input('Please enter your name: ')
#Printing The Variable:#
print(name)
#Checking The Variable And Printing Accordingly:#
if name == 'Joe':
  print('Joe Mama')

Example 2: how to accept input from the user in python

# if you want to ask the user to input anything, use the keyword "input"

# example

a = input("What is your name") # the user will be prompted to answer the question 

print(a) # this allows the user to actaully see the question or anything

Example 3: python user input

user = input("yes, no\n")

Example 4: 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)