numpy 的使用 numpy.array基础 import numpy numpy.__version__ #查询当前numpy的版本 '1.14.0' import numpy as np np.__version__ '1.14.0' Python List 特点 L = [i for i in range(10)] L [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] L[5] 5 L[5] = 20 L [0, 1, 2, 3, 4, 20, 6, 7, 8, 9] L[5