Computer Science, asked by venkatrishi2004, 8 months ago

Find and write the output of the following Python code: 2
Lst1 = ["20","50","30","40"]
CNT = 3
Sum = 0
for I in [7,5,4,6]:
T = Lst1[CNT]
Sum = float (T) + I
print Sum
CNT-=1

Answers

Answered by Shlok2aryan
0

Answer:

File "/home/f0c310e3c13bd65a2932df295594d305.py", line 5

   T = Lst1[CNT]

   ^

IndentationError: expected an indented block

Explanation:

program is wrong............

Similar questions