Why: Variables store values you can reuse. Printing displays them. This is how you see what your program does.
Example:name = "Alice"
print(name)
Challenge:Create a variable x with value 10, then print it. Your output must include '10'.
Suggested questions: