阅读量:0
可以通过Python的numpy库中的arange函数来生成等差数列。具体的用法如下:
import numpy as np start = 0 stop = 10 step = 2 arr = np.arange(start, stop, step) print(arr)
在上面的代码中,我们首先导入了numpy库,然后定义了起始值start、终止值stop和步长step。接着使用np.arange(start, stop, step)函数来生成等差数列,并将结果存储在arr变量中。最后打印出生成的等差数列arr。
通过这种方法,我们可以方便地生成任意起始值、终止值和步长的等差数列。