Computer Science, asked by jasonidhaya3793, 7 months ago

a)To print the sum of the following series

3+6+9+12+15

b) To find the sum of the series

½+3/4+5/6+7/8+………..19/20​

Answers

Answered by MrMK83
0

Answer:

This is for python...

list = [3,6,9,12,15]

sum = list ([0]+[1]+[2]+[3]+[4])

print(sum)

hope it helps....

Pls mark Brainliest only if you find it helpful!

Similar questions