Warum ist das Programm
import numpy as np
c = np.array([1,2])
print(c.shape)
d = np.array([[1],[2]]).transpose()
print(d.shape)
geben.
(2,)
(1,2)
als seine Ausgabe? Sollte es nicht so sein
(1,2)
(1,2)
stattdessen? Ich habe dies sowohl in Python 2.7.3 als auch in Python 3.2.3