📜  映射 numpy 数组 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:31.055000             🧑  作者: Mango

代码示例1
import numpy as np 
x = np.array([1, 2, 3, 4, 5])
# Obtain array of square of each element in x
squarer = lambda t: t ** 2
squares = np.array([squarer(xi) for xi in x])