Computer Science, asked by cuteipriya02, 7 months ago

Write a python program using the while loop to print the following series:
100, 98,96 ... 2

Answers

Answered by arifanadeem24
11

Answer:

for i in range(1,101,10):

       for j in range(i, i+10):

           print(j, end=' ')

       print()

mark as brainlist

Answered by Anonymous
7

Answer:

for i in range (100,1,-2):

   print(i,",",end=" ")

# HOPE IT HELPS YOU

PLEASE MARK BRAINLIEST

Similar questions