python string input 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 get input

# 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 3: how to get user inout in python

#just get input
test = input()

#add a custom message
test = input("Please enter your information: ")

#turning what is inputed into a differnt type of data
test = int(input("Please enter your information: "))

Example 4: accept user input in python

#Take Integer Value
nval=int(input("Enter a number : "))
#Take String Value
sval=input("Enter a string : ")
#Take float value
fval=float(input("Enter a floating-point number : "))

Example 5: python input

# Learning input is very easy
# Just make a variable and then the input function
# then type what question do you want
running = True
mi = input('Are you a girl or a boy?')
# Use def to figure it out
l = mi
if l == 'boy' or l == 'Boy':
   	ui = 'boy'
elif l == 'girl' or l == 'Girl':
    ui = 'girl'
else:
    # Make sure if it is a something not in the if
    running = False
    print('huh?')
if running == True:
    mine = input('How old are you?')
    def v(u):
        n = int(u)
        if n > 3 and n < 11:
            print('Good', ui)
        else:
            print('Great.')
    # Remember to use the function
    v(mine)

Example 6: why wont my python input accept string inputs

username = raw_input("Type you username: ")
print("Welcome " + username)

Tags:

Php Example