Como criar uma matriz a partir da lista em Python

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