numpy如何按等长分割数组 1、效果 2、流程 1、分割数组 2、转列表 3、代码 # -*- coding: utf-8 -*- """ @contact: 微---信 1257309054 @file: test.py @time: 2024/8/03 19:46 @author: LDC """ import numpy as np # 假设arr是需要分割的numpy数组 arr = np.arange(100) # 示例数组,包含100个元素