A = numpy.array(L)
=> Make an Array from a List using numpy ModuleA = numpy.arrange(start, stop, step, dtype)
=> Make an ArrayA = numpy.linespace(start, stop, num)
=> Make an Array by giving number of valuesA.shape
A.itemsize
A.dtype
=> Returns data type of the arraynumpy.log(A)