python列表推导式
python列表推导式
arr = [1, 2, 3, 4, 5]
arr_x10 = [1 / x for x in arr]
将arr中每个元素都求下倒数
python的map也可做类似的事
map(function, iterable, ...)
arr = [1, 2, 3, 4, 5]
result = map(multiply_by_10, arr)
print(list(result)) # 输出: [10, 20, 30, 40, 50]
python的map与其它语言的map不一样, 不是映射集合, 映射集合使用dict