Write a program using FOR loop in Python to print first 15 odd numbers in reverse order.
in python
Answers
Answered by
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
0
Answer:
here is the correct answer
please mark me the brainiest
Attachments:
Similar questions