Answers for "getting input from user python 3"

1

user input python

input = input("Enter your value: ") 

print(input) # prints the input
Posted by: Guest on September-17-2020
0

python 2.7 get user input

# Python 2

txt = raw_input("Type something to test this out: ")
print "Is this what you just said?", txt
Posted by: Guest on December-18-2019

Python Answers by Framework

Browse Popular Code Answers by Language