Q6Numerical3 Marks31 Aug 2025
Consider the below python code. What will be the output of the given code? Enter an integer as your answer.
```
lst = []
for i in range(5):
lst.append(i)
lst.append(i*10)
lst[1:4] = [100]
print(sum(lst))
```
Press Enter to check.