Computer Science, asked by nishahotwani, 2 months ago

Write the program to print the following series:

5 , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45 , 50​

Answers

Answered by amurugappancbe
1

Answer:

list = ("5 , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45 , 50​")

>>> print(list)

5 , 10 , 15 , 20 , 25 , 30 , 35 , 40 , 45 , 50​

Explanation:

add a list and

print the list

Similar questions