matrix_a=[[3,6],[4,5]]
matrix_b=[[5,8],[6,7]]
print ([sum(x*y) for x,y in zip(matrix_a,matrix_b)])

TypeError: can't multiply sequence by non-int of type 'list'
곱셈 하고있는중인데 이런 에러뜸 도대체 뭐때문에 뜨는거임

- dc official App