Question #250954

Write a loop to print 56 to 70 inclusive (this means it should include both the 56 and 70). The output should all be written out on the same line.

Sample Run

Expert's answer

# print(*range(56, 71))
for i in range(56, 71):
    print(i, end=' ')
LATEST TUTORIALS
APPROVED BY CLIENTS