python input statement with variable code example
Example 1: input in python
#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')
Example 2: how to use inputs in python
# python 3.8
YourInout = input("your text input")
print(YourInput)