运行下方代码段,输出结果为[0, 1, 2],则①处可以填写( )。
import numpy
a = numpy.asarray([0, 1, 2, 1, 0, 1, 2, 1, 0])
b = a[①]
print(b)
4:1:-1
0:2
0:3:1
::3