尝试创建numpy数组时遇到错误

时间:2016-06-14 18:01:10

标签: python arrays numpy

这是我的代码:

import numpy as np
x = np.array[[1,2]]
print x

这是输出:

Traceback (most recent call last):
  File "Shear_Moment_Test.py", line 2, in <module>
    x = np.array[[1,2]]
TypeError: 'builtin_function_or_method' object has no attribute '__getitem__'

任何建议都将不胜感激!

1 个答案:

答案 0 :(得分:1)

您使用的语法错误。用这个 x = np.array([1,2])