None really, I was just learning the syntax, thus:
In [3]: print(np.array([1,0]))
[1 0]
In [4]: print(np.array([[1,1]]))
[[1 1]]
by the way, it is also slightly confusing that the output format of the array is not consistent with the input:
In [5]: a = np.array([[0, 0]])
In [6]: for v in a :
...: print(v)
...:
[0 0]
In [7]: [0 0] in a
File "<ipython-input-7-86c19ca29a5c>", line 1
[0 0] in a
^
SyntaxError: invalid syntax