Find the output of the following: L1= [100, 900, 300, 400, 500] START=1 SUM=0 For C in range (START, 4): SUM=SUM+L1[C] print (C, ": ", SUM) SUM=SUM +L1[0] *10. print (SUM)
Answers
Answered by
0
Answer:
OUTPUT:----
4:1200
2200
Similar questions