第12949题 单选
运行给定Python代码print(alist[1::3])的输出结果是什么?
alist=list(range(1,10))
print(alist[1::3])
A

[0, 3, 6]

B

[1, 4, 7]

C

[2, 5, 8]

D

[3, 6, 9]