Ask Question

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

+3
Answers (1)
  1. 26 August, 20:25
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers