在python中,假设列表对象aList的值为aList= [1,2,3,'a','b','c',4,5,6,'d','e','
2023-12-01Python1第2单元
在python中,假设列表对象aList的值为aList= [1,2,3,'a','b','c',4,5,6,'d','e','f']那么切片aList[2:6]得到的值是( )
A.[ 2,3, 'a', 'b']
B.[ 1,2,3, 'a', 'b']
C.[3, 'a', 'b', 'c']
D.[ 2,3, 'a', 'b', 'c']
正确答案是C
