Jak utworzyć matrycę z listy w Python

import numpy
matrix = numpy.matrix([1, 2, 3, 4])
CompSciGeek