Thursday, October 2, 2025
HomeLanguagesnumpy.full() in Python

numpy.full() in Python

numpy.full(shape, fill_value, dtype = None, order = ā€˜C’) : Return a new array with the same shape and type as a given array filled with a fill_value.
Parameters :

shape      : Number of rows
order      : C_contiguous or F_contiguous
dtype      : [optional, float(by Default)] Data type of returned array.  
fill_value : [bool, optional] Value to fill in the array.

Returns :

ndarray




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


Output :


Matrix a : 
 [[67 67]
 [67 67]]

Matrix c : 
 [[ 10.1  10.1  10.1]
 [ 10.1  10.1  10.1]
 [ 10.1  10.1  10.1]]

References :
https://docs.scipy.org/doc/numpy/reference/generated/numpy.full.html#numpy.full
Note :
These NumPy-Python programs won’t run on online IDE’s, so run them on your systems to explore them
.
This article is contributed by Mohit Gupta_OMG šŸ˜€. If you like Lazyroar and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. 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.

RELATED ARTICLES

Most Popular

Dominic
32331 POSTS0 COMMENTS
Milvus
85 POSTS0 COMMENTS
Nango Kala
6703 POSTS0 COMMENTS
Nicole Veronica
11867 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11927 POSTS0 COMMENTS
Shaida Kate Naidoo
6818 POSTS0 COMMENTS
Ted Musemwa
7080 POSTS0 COMMENTS
Thapelo Manthata
6775 POSTS0 COMMENTS
Umr Jansen
6776 POSTS0 COMMENTS