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