摘要:
练习篇(Part 5) 51. Create a structured array representing a position (x,y) and a color (r,g,b) (★★☆) 运行结果: [((0., 0.), (0., 0., 0.)) ((0., 0.), (0., 0., 阅读全文
摘要:
1、np.zero(10) 创建一个包含10个元素的一维数组 np.ones((10,10)) 创建一个包含10*10个元素1的二维数组 2、np.arange(10,50) 创建一个一维数组包含10-49所有的整数 3、np.arange(9).reshape(3,3) 重构为3*3的数组 4、a 阅读全文