Write the program to print the following series:
5 , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45 , 50
Answers
Answered by
1
Answer:
for i in range(5, 51, 5):
print(i, end=' ')
print()
Explanation:
pls mark me brainlist
Similar questions