1.

Write a program using FOR loop in Python to print first 15 odd numbers in reverse order. in python

Answer»

for i in RANGE(1,15+1):    print(2*15 - 2*i + 1, end=' ')    Explanation:for any Nfor i in range(1,N+1):    print(2*N - 2*i + 1, end=' ')



Discussion

No Comment Found