Q24Comprehension3 Marks7 Jul 2024
Passage
Consider the following snippet of code and answer the subquestions that follow:
```
my_list = [1, 2, 3, 4, 5]
new_list = my_list
new_list[0] = 10
print(my_list)
```
What will be the output?
Programming in Python · Week 6