reading from user in python code example
Example: reading from user in python
# Python program showing
# a use of input()
val = input("Enter your value: ")
print(val)
# Python program showing
# a use of input()
val = input("Enter your value: ")
print(val)