Answer to Question #99238 in Python for Tobe

Question #99238
Write code using the range function to add up the series 20, 30, 40, ... 90 and print the resulting sum.

Expected output: 440
1
Expert's answer
2019-11-25T07:51:26-0500
 sum = 0
for i in range(20, 91, 10):
    sum+= i
print(sum) 

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS