224k views
1 vote
Use a for loop to output the numbers from 50 to 65

1 Answer

13 votes

I don't understand the question. Algorithm (Shematic) or specific language for this question. Please give some information about question.

Edit:

____

from = 50

to = 65

for i in range(from,to + 1):

print(i)

-------

Good Lessons!

User Alexey Alexeenka
by
4.4k points