0 for i in range(n)
By Vincent Heathcote at Apr 03 2021
s=0 def sum(x,y): n=int(input("enter no. of terms") for i in range(n): l=int(input("enter no.")) s=s+l print(s) sum()
By Ed Nicolas at Jun 22 2021