Computer Science, asked by rigok22841, 3 months ago

Accept Marks in 3 Subjects and find the sum and average of the same

Answers

Answered by SSJisOP
1

Answer:

Please increase my followers by following me you will get 50 followers

Answered by peeyush321kumar
2

Answer:

Explanation:

sum=0

for i in range(1,4):

   x=float(input("Enter you marks in sub ",i ,": "))

   sum=sum+x

print('sum is :',sum)

avg=sum/3

prnit('aveeage is : ',avg)

Similar questions