input in python programmatically code example
Example 1: python input
# The function 'input()' asks the user for input
myName = input()
Example 2: input in python
#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')
# The function 'input()' asks the user for input
myName = input()
#Input in python
name = input('What is your name')
print('Hello'+ name + ' !')