在列表项上添加额外空间

时间:2018-06-09 08:24:06

标签: python list numpy dictionary

我遇到了一个非常简单的问题,仅仅因为空白而在竞争中花了我一个问题。

代码如下:

import numpy as np
import math

rows, columns = map(int, input().split()) 
mat = np.array([list(map(int, input().split())) for row in range(rows)])

print (np.mean(mat, axis = 1))
print (np.var(mat, axis = 0))
print (np.around(np.std(mat), decimals=11))

所以如果输入是:

2 2
1 2
3 4

输出结果为:

[1.5 3.5]
[1. 1.]
1.11803398875

预期输出为:

[ 1.5  3.5]
[ 1.  1.]
1.11803398875

并生成“错误答案”。如何在列表上添加额外的空间以便它可以被接受?

0 个答案:

没有答案