numpy package as np and you want to assign the variable x with a 3 by 2 array of type integer, all of whose values are 1. Which of these commands will you use to do so code example
Example: how to import numpy array in python
>>> import numpy as np
>>> a = np.array([0, 1, 2, 3])
>>> a
array([0, 1, 2, 3])