Wednesday, July 3, 2024
HomeLanguagesPythonnumpy.empty() in Python

numpy.empty() in Python

numpy.empty(shape, dtype = float, order = ā€˜Cā€™) : Return a new array of given shape and type, with random values.
Parameters :

-> shape : Number of rows
-> order : C_contiguous or F_contiguous
-> dtype : [optional, float(by Default)] Data type of returned array.  




# Python Programming illustrating
# numpy.empty method
Ā Ā 
import numpy as geek
Ā Ā 
b = geek.empty(2, dtype = int)
print("Matrix b : \n", b)
Ā Ā 
a = geek.empty([2, 2], dtype = int)
print("\nMatrix a : \n", a)
Ā Ā 
c = geek.empty([3, 3])
print("\nMatrix c : \n", c)


Output :

Matrix b : 
 [         0 1079574528]

Matrix a : 
 [[0 0]
 [0 0]]

Matrix a : 
 [[ 0.  0.  0.]
 [ 0.  0.  0.]
 [ 0.  0.  0.]]

Note : empty, unlike zeros, does not set the array values to zero, and may therefore be marginally faster.
Also, these codes wonā€™t run on online-ID. Please run them on your systems to explore the working

This article is contributed by Mohit Gupta_OMG šŸ˜€. If you like Lazyroar and would like to contribute, you can also write an article using contribute.neveropen.co.za or mail your article to contribute@neveropen.co.za. See your article appearing on the Lazyroar main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

Dominic Rubhabha Wardslaus
Dominic Rubhabha Wardslaushttps://neveropen.dev
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments