Answers for "take user input python"

93

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')
Posted by: Guest on August-09-2020
1

python user input

x = input("y/n")
Posted by: Guest on January-24-2021
1

python print user input

name = input("Hi! What’s your name ? ")
print("Nice to meet you " + name + "!")

age = input("How old are you ? ")

print("So, you are already " + str(age) + " years old, " + name + " !")
Posted by: Guest on May-13-2021
1

how to take input from user in python

variable = input("Text: ")
Posted by: Guest on May-25-2021
0

how to get user input python

x = input("enter prompt here: ")
Posted by: Guest on October-31-2020
0

python user input

var = raw_input()
# OR
var = input()

""" raw_input can only be a string, but input can be a string, 
integer, or variable. """
Posted by: Guest on February-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language