天天看点

TypeError: data type not understood

python的二维数据表示要用二层括号来进行表示。

如:产生一个2×3的全0矩阵,若是zeros(2,3)这种写法就会出现 TypeError: data type not understood  这种错误; 

 正确的写法是 zeros((2,3))