input for 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: python how to use input

#basic user handling for begginers

x = input("your question here") # when someone types something here that answer will be saved and be used for later

# for example 
print(x)

Example 3: input in python

#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')

Example 4: input code for python

# Python 2

txt = raw_input("Type something to test this out: ")
print "Is this what you just said?", txt

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