Python| Numpy np.polyzero() 方法
可以使用np.polyzero()
方法代替np.zeros来创建元素为 0 的数组。
Syntax : np.polyzero()
Return : Return array([0])
示例 #1:
# Python program explaining
# numpy.polyzero() method
# import numpy and polyzero
import numpy as np
from numpy.polynomial.polynomial import polyzero
# using np.polyzero() method
ans = polyzero
print(ans)
输出 :
[0]
示例 #2:
# Python program explaining
# numpy.polyzero() method
# import numpy and polyzero
import numpy as np
from numpy.polynomial.polynomial import polyzero
# using np.polyzero() method
ans = polyzero + [[1, 3, 5], [2, 4, 6]]
print(ans)
输出 :
[[1 3 5]
[2 4 6]]