a = np.arange(12) print(a, type(a)) b = range(10) print(b, type(b)) li = list(b) print(li)
拓展:
两个参数:起点,终点
三个参数:第三个是步长