运行下列程序,输出结果是?( )
mylist = list(range(1, 13))
print(mylist[1::3])
[3, 6, 9, 12]
[2, 5, 8, 11]
[1, 4, 7, 10]
上述代码执行报错