下面这段python代码的运行结果是什么? list = ['a', 'b', 'c', 'd', 'e'] print list[10:]
程序异常
['a', 'b', 'c', 'd', 'e']
[]
输出空