Answers for "python how to save user input"

1

how to save inputs python

#this is a getname command for example

# Function gets name from user
def get_name():
    print("Hello what is your name?")
    name = input("My name is: ")
    print("Hello ", name)
    return name
  
#  you can use the name as a variable in prints
print(name, 'you did very well')
#pls upvote
Posted by: Guest on March-11-2021
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 "python how to save user input"

Python Answers by Framework

Browse Popular Code Answers by Language