Lesson 7: Input and Output
Python allows users to input data.
name = input("Enter your name: ")
print("Welcome", name)
Next Lesson →