3
Question Question 3
Consider the following sequence of statements:
a = 35
m = a
Following the execution of these statements, Python has created how many objects and how many references ?
- Two integer objects, two references
- One integer object, two references ✓
- One integer object, one reference
- Two integer objects, one reference