Computer Science, asked by nerdy10, 5 months ago

Which of the following instruction can be used in a Python program to display the numbers 5,10,15,20,25,30 as output?​

Answers

Answered by aryanrastogi069
1

Answer:for i in range(5, 76, 5):

   print(i, end=' ')

print()

Explanation: Hope it helps

Similar questions