Answers for "how to ask user for input string in python s"

11

python input function

answer = input('What is your name?')
Posted by: Guest on April-24-2020
2

how to add a user input in python

#This will allow the user to type in their name.
name = input("What is your name?")
#or
print("What is your name?")
NAME = input()
Posted by: Guest on May-07-2020

Code answers related to "how to ask user for input string in python s"

Python Answers by Framework

Browse Popular Code Answers by Language