python inpuy code example
Example 1: input in python
#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')
Example 2: python input
# use the function input()
# the parameter is something that would
# output on the screen before the input
name = input('What is your name?')
print('Hello ' + name)