Change language

numpy.zeros () in Python

numpy.zeros (shape, dtype = None, order = & # 39; C & # 39;): return a new array of the given shape and type with zeros. 
Parameters :

  shape:  integer or sequence of integers  order:  C_contiguous or F_contiguous C-contiguous order in memory (last index varies the fastest) C order means that operating row-rise on the array will be slightly quicker FORTRAN-contiguous order in memory (first index varies the fastest). F order means that column-wise operations will be faster.  dtype:  [optional, float (byDeafult)] Data type of returned array. 

Returns :

 ndarray of zeros having given shape, order and datatype. 


Code 1 :

# Python program illustrating
# numpy.zeros method

 

import numpy as geek

 

b = geek.zeros ( 2 , dtype = int )

print ( "Matrix b:" , b)

 

a = geek.zeros ([ 2 , 2 ], dtype = int )

print ( "Matrix a:" , a)

 

c = geek.zeros ([ 3 , 3 ])

print ( "Matrix c:" , c)

Output:

 Matrix b: [ 0 0] Matrix a: [[0 0] [0 0 ]] Matrix c: [[0. 0. 0.] [0. 0. 0.] [0. 0. 0.]] 


Code 2: Type management data

# Python program illustrating
# numpy.zeros method

 

import numpy as geek

 
# manipulating data types

b = geek.zeros (( 2 ,), dtype = [ ( ’x’ , ’ float’ ), ( ’y’  , ’int’ )])

print (b)

Output:

 [(0.0, 0) (0.0, 0)] 

Link:
https://docs.scipy.org/doc/numpy- dev / reference / generated / numpy.zeros.html # numpy.zeros
Note: zeros, unlike zeros and nulls, do not set array values ​​to zero or random values respectively. Also, these codes will not work with an online ID. Please run them on your systems to see how they work.

This article is courtesy of Mohit Gupta_OMG

Shop

Gifts for programmers

Best laptop for Excel

$
Gifts for programmers

Best laptop for Solidworks

$399+
Gifts for programmers

Best laptop for Roblox

$399+
Gifts for programmers

Best laptop for development

$499+
Gifts for programmers

Best laptop for Cricut Maker

$299+
Gifts for programmers

Best laptop for hacking

$890
Gifts for programmers

Best laptop for Machine Learning

$699+
Gifts for programmers

Raspberry Pi robot kit

$150

Latest questions

PythonStackOverflow

Common xlabel/ylabel for matplotlib subplots

1947 answers

PythonStackOverflow

Check if one list is a subset of another in Python

1173 answers

PythonStackOverflow

How to specify multiple return types using type-hints

1002 answers

PythonStackOverflow

Printing words vertically in Python

909 answers

PythonStackOverflow

Python Extract words from a given string

798 answers

PythonStackOverflow

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

606 answers

PythonStackOverflow

Python os.path.join () method

384 answers

PythonStackOverflow

Flake8: Ignore specific warning for entire file

360 answers


Wiki

Python | How to copy data from one Excel sheet to another

Common xlabel/ylabel for matplotlib subplots

Check if one list is a subset of another in Python

How to specify multiple return types using type-hints

Printing words vertically in Python

Python Extract words from a given string

Cyclic redundancy check in Python

Finding mean, median, mode in Python without libraries

Python add suffix / add prefix to strings in a list

Why do I get "Pickle - EOFError: Ran out of input" reading an empty file?

Python - Move item to the end of the list

Python - Print list vertically