Write a program to prints the following output using for loop:
0 10
1 9
2 8
3 7
4 6
Answers
Answered by
4
Required program in python:
for i in range(0, 5):
print(str(i), str(10-i), sep = " ")
Output:
0 10
1 9
2 8
3 7
4 6
Similar questions