consum

2024/4/11 19:16:47

【Python性能优化实例】计算 numpy 数组首尾为 0 的数量

import numpy as np import timeit测试数据 开头有 30000 个 0 元素,中间有 100000 个非 0 元素,结尾有 70000 个为 0 元素的 numpy 数组。下面以计算数组末尾的零的数量为例。 array np.array([0] * 30000 [i for i in range(1, 1000001)] [0] * 7…