- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2小时前关门了。
Improve this question
我完全按照我在网上找到的格式在numpy中初始化数组,并不断得到相同的错误。
以下代码直接取自documentation:
np.array([1, 2, 3])
我仍然收到以下错误:
TypeError: 'list' object is not callable
从我可以看到在线,这个错误发生的原因
1.您试图分配数组的变量名已经是内置对象;或
1.在应该使用方括号的地方使用了圆括号
这两种情况在这里似乎都不是这样
1条答案
按热度按时间wz3gfoph1#
之前,你应该安装numpy在你的venv,然后像这样导入它:
那么你应该在你的终端里得到这个
[1 2 3]
!