python-scipyHow can I use the x.shape function in Python Numpy?
The x.shape
function is a part of the NumPy library in Python and is used to find the shape of an array. It returns a tuple of the form (rows, columns)
, where rows
is the number of rows and columns
is the number of columns in the array.
Example
import numpy as np
x = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
x.shape
Output example
(3, 3)
The code above imports NumPy as np
and creates an array x
with three rows and three columns. Then the x.shape
function is used to find the shape of the array x
, which is (3, 3)
.
Code explanation
import numpy as np
: imports the NumPy library and assigns it to the aliasnp
np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
: creates an arrayx
with three rows and three columnsx.shape
: finds the shape of the arrayx
Helpful links
More of Python Scipy
- How can I use Python and SciPy to solve an ordinary differential equation?
- How do I use Python XlsxWriter to write a NumPy array to an Excel file?
- How do I use scipy's griddata function in Python?
- How do I use Python Scipy to perform a Z test?
- How do I calculate the variance with Python and NumPy?
- How do I calculate the cross-correlation of two arrays using Python and NumPy?
- How can I use Python and NumPy to find unique values in an array?
- How do I upgrade my Python Scipy package?
- How can I use Python Scipy to convert between different units of measurement?
See more codes...