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
1
Answer:for i in range(5, 76, 5):
print(i, end=' ')
print()
Explanation: Hope it helps
Similar questions