Computer Science, asked by umadevirao07, 3 months ago

write a python program that uses a for loop to print the numbers 8,11,14,17,20,....,83,86,89.​

Answers

Answered by nehaprasanth1889
1

Answer:

for i in range(8,90,3):

   print(i,end=" ")

Explanation:

hope this helps!

Similar questions