前言 对于学习NumPy(Numeric Python),首先得明确一点是:Numpy 是用来处理矩阵数组的. shape 属性 对于shape函数,官方文档是这么说明: the dimensions of the array. This is a tuple of integers indicating the size of the array in each dimension. 直译:数组的维度.这是一个整数的元组,元组中的每一个元素对应着每一维度的大小(size). 再直译一点理解就是
输入班级人数,统计人名,性别,年龄: 建立一维数组,并放到集合中: //Console.Write("请输入班级人数:"); //int a = int.Parse(Console.ReadLine()); //ArrayList al = new ArrayList(); //for (int i = 0; i < a;i++ ) //{ // string[] name = new string[3]; // Console.Write("请输入第{}个人的姓名:&