asked 73.2k views
5 votes
4.9 Code Practice: Question 2

4.9 Code Practice: Question 2-example-1
asked
User Rushi
by
7.9k points

2 Answers

2 votes

Answer:

sum = 0

for r in range (20, 91, 10):

sum += r

print(sum)

Step-by-step explanation:

answered
User Mendi Barel
by
8.6k points
4 votes

total = 0

for x in range(20, 91, 10):

total += x

print(total)

I hope this helps!

answered
User Bluearrow
by
8.8k points

No related questions found