Open In App

Python | Numpy np.legzero() method

Last Updated : 31 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
np.legzero() method can be used instead of np.zeros for creating a array whose elements are 0.
Syntax : np.legzero() Return : Return array([0])
Example #1 : Python3 1=1
  
# Python program explaining
# numpy.legzero() method 

# import numpy and legzero
import numpy as np
from numpy.polynomial.legendre import legzero

# using np.legzero() method
ans = legzero

print(ans)
Output :
[0]
Example #2 : Python3 1=1
# Python program explaining
# numpy.legzero() method 

# import numpy and legzero
import numpy as np
from numpy.polynomial.legendre import legzero

# using np.legzero() method
ans = legzero + [[1, 3, 5], [2, 4, 6]]

print(ans)
Output :
[[1 3 5] [2 4 6]]

Next Article

Similar Reads