Ask Question
21 August, 01:17

Write a loop to print 10 to 90 inclusive (this means it should include both the 10 and 90), 10 per line.

+2
Answers (1)
  1. 21 August, 03:56
    0
    c = 0

    for x in range (10,91):

    print (x, end=" ")

    c = c + 1

    if c>=10:

    print (" ")

    c=0
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a loop to print 10 to 90 inclusive (this means it should include both the 10 and 90), 10 per line. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers