Contact: aviboots(AT)netvision.net.il
39,907 questions
51,839 answers
573 users
import numpy as npy arr = npy.empty([2, 3], dtype = int) print(arr.shape) print(arr.dtype) print(arr) ''' run: (2, 3) int64 [[14329654312 1812568 14066430928] [145096484272 14012338192 0]] '''
import numpy arr = numpy.matrix([[1, 2], [3, 4], [5, 6]], numpy.int) print(arr.shape) print(arr.dtype) print(arr) ''' run: (3, 2) int64 [[1 2] [3 4] [5 6]] '''
import numpy arr = numpy.zeros((3, 2), numpy.int) print(arr.shape) print(arr.dtype) print(arr) ''' run: (3, 2) int64 [[0 0] [0 0] [0 0]] '''