Computer Science, asked by abhishekmitra293, 2 months ago

MSG = ["30","10","40","20"]

STEP = 3

SUM = 0

for X in [3,5,7,9]:

T = MSG[STEP]

SUM = float(T) + X

print(SUM)

STEP-=1​

Answers

Answered by ariellemichelles6
0

Answer:

10,20,30,40 +3,5,7,9

Explanation:

thanks

Similar questions