有没有一种简单的方法来计算Python中几个(相同长度)列表的平均值?说,我有[[1, 2, 3], [5, 6, 7]],并希望获得[3,4,5].这要做10万次,所以希望它快.
[[1, 2, 3], [5, 6, 7]]
[3,4,5]
python
python ×1