Computer Science, asked by vardhanbonam7, 8 months ago

write for loop to print odd numbers ending with 7 from 10 to 50(in python)....​

Answers

Answered by rekhargoyal16
0

Answer:

Reduce each of the following into its simplest form 72/90

Answered by Saipavan55
3

Answer:

for i in range(10,50):

   if i%10==7:

       print(i)

Similar questions