Using python
26.1 NumPy Array Attributes
Create a 2 X 2 integer array with the given values and print its attributes:
The shape of the array
The array dimensions
Sample output:
Printing Array
[[3257 142]
[4924 462]]
Printing NumPy array Attributes:
Array Shape is: (2, 2)
Array dimensions are 2
You will need to import NumPy at the top of your code.