Q6.What is the output of the following snippet of code? Enter an integer as your answer.
```
lst = ['IIT', ['Madras', '2025'], 'exam']
print(len(lst[0]) + len(lst[1][1]) + len(lst[2]))
```
Save
Check
Details
Q6
13 Jul 2025
Q6.What is the output of the following snippet of code? Enter an integer as your answer.
```
lst = ['IIT', ['Madras', '2025'], 'exam']
print(len(lst[0]) + len(lst[1][1]) + len(lst[2]))
```