1. What does Python display when it executes `print(2+5)`?
The number 7
Explanation
`print()` evaluates expressions before displaying them, so `2+5` is calculated and the output is 7. Writing `print("2+5")` would display the expression as text instead.