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 can I use Python and Numpy to zip files?
- How do I install SciPy on Windows using Python?
- How can I check if a certain version of Python is compatible with SciPy?
- How do I use the scipy ttest_ind function in Python?
- How do I use Python XlsxWriter to write a NumPy array to an Excel file?
- How can I use Python Scipy to zoom in on an image?
- How do I use Python Numpy to read and write Excel (.xlsx) files?
- How do I create a 2D array of zeros using Python and NumPy?
- How do I use Python Scipy to perform a Z test?
- How to use Python, XML-RPC, and NumPy together?
See more codes...