Computer Science, asked by swapanita6c, 3 days ago

Write a program to display following series of numbers:
100, 97, 94, 91,……….,4,1 python

Answers

Answered by shaktivell62
2

Answer:

for i in range(100,0,-3)

print(i)

Answered by Anonymous
1

Program:

for i in range(100, 0, -3):

print(i)

Similar questions