Answers for "input value in python"

1

how to take input of something in python

name = input("What is your name? ") 
print("Hi, " + name)
Posted by: Guest on December-30-2019
0

Getting Input in Python

print("What is your name?")
name = input()
print(name)  # This will print out whatever the user typed
Posted by: Guest on October-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language