input function python

26

# Python program showing 
# a use of input()
  
val = input("Enter your value: ")
print(val)

Comments

Submit
0 Comments