python-scipyHow do I create a numpy array of zeros using Python?
Creating a numpy array of zeros using Python is simple. To do this, the numpy
library must be imported.
import numpy as np
Then, a numpy array can be created using the zeros
function, passing in the desired shape of the array as an argument. For example, to create an array of zeros with a shape of (2,3):
arr = np.zeros((2,3))
print(arr)
Output example
[[0. 0. 0.]
[0. 0. 0.]]
The code can be broken down as follows:
import numpy as np
imports thenumpy
library, and assigns it the aliasnp
for easy access.arr = np.zeros((2,3))
creates a numpy array of zeros with a shape of (2,3) and assigns it to the variablearr
.print(arr)
prints the array to the console.
For more information, see the Numpy Documentation.
More of Python Scipy
- How do I use Python XlsxWriter to write a NumPy array to an Excel file?
- How do I create a 2D array of zeros using Python and NumPy?
- How can I use Python and SciPy to find the zeros of a function?
- How do I use Python Scipy to perform a Z test?
- How do I create a zero matrix using Python and Numpy?
- How do I use the NumPy transpose function in Python?
- How do I use Python Scipy's Odeint function?
- How can I use Python Scipy to zoom in on an image?
- How can I use Python and Numpy to zip files?
- How to use Python, XML-RPC, and NumPy together?
See more codes...