This tutorial will show how to get user input from those who are interacting with your program.
Use input() to get users input
Age = input("Enter your age:")
print("User's age is: " + Age)
Output :
Enter your age: { 21 }
User’s age is: 21
Check out more tutorials below!