Q6Numerical4 Marks13 Jul 2025
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]))
```
Press Enter to check.
Programming in Python · Week 6