input statement 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 take input in python

# Taking string input
a = input("Enter a string: ")
print("String is: ", a)

# Taking integer input
b = int(input("Enter an integer: "))
print("Integer is: ", b)

# Taking float input
c = float(input("Enter a float value: "))
print("Float value is: ", c)

Example 3: python input function

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

Example 4: python input

# use the function input()

# the parameter is something that would
# output on the screen before the input

name = input('What is your name?')
print('Hello ' + name)

Example 5: python getting input from

# Python 3

txt = input("Type something to test this out: ")

# Note that in version 3, the print() function
# requires the use of parenthesis.
print("Is this what you just said? ", txt)

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