examples of inputs python
Example 1: input code for python
# Python 2
txt = raw_input("Type something to test this out: ")
print "Is this what you just said?", txt
Example 2: how to use inputs in python
# python 3.8
YourInout = input("your text input")
print(YourInput)