Q1Single correct3 Marks26 Oct 2025
Consider the following Python code. What will the value stored in `x` be at the end of the program execution?
```
x = 5
x = x + 2.0
x = str(x) + "3"
x = x * 2
x = [x]
x = x + [10]
```
Programming in Python · Week 6