运行下列python程序,输出结果是?( )
alist=list(range(1,10))
print(alist[1::3])
[0, 3, 6]
[1, 4, 7]
[2, 5, 8]
[3, 6, 9]