Cómo crear una matriz de la lista en Python

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