Computer Science, asked by Nct20202020, 2 months ago

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


in python

Answers

Answered by profdambaldor
1

Answer:

for i in range(1,15+1):

   print(2*15 - 2*i + 1, end=' ')

   

Explanation:

for any N

for i in range(1,N+1):

   print(2*N - 2*i + 1, end=' ')

Answered by namratajena185
0

Answer:

here is the correct answer

please mark me the brainiest

Attachments:
Similar questions