SyntaxFix
Write A Post
Hire A Developer
Questions
you can use this for lists of the same length
def lstsum(a, b): c=0 pos = 0 for element in a: c+= element*b[pos] pos+=1 return c