Q6Single correct3 Marks18 Dec 2025
Which of the following code snippets will raise an error during execution?
**Code-1**
```
T = (4, 5, 6)
T[0] = 10
```
**Code-2**
```
S = set()
S.insert(2)
```
**Code-3**
```
L = []
L.append(3)
```
Programming in Python · Week 1