㈠ python 怎么算矩阵每列的和
output=[]nrow=len(mat)ncol=len(mat[0])foriinrange(ncol):output.append(sum([mat[x][i]forxinrange(nrow)]))printoutput