设myList=[’java’,12,’Python’],则myList [1]值是______ ,myList[:2]值是(’java’,12)。
举一反三
- 执行如下语句:myList=[2,6,8,10]myList[1]=5myList的值为[5,6,8,10]()
- 设有列表myList=[3,4,5,6,7,8,9],则切片myList[3:5]的结果是【】,myList[-1:]的结果是【】
- 中国大学MOOC: 列表mylist的值为[1,2,3,4,5],若执行mylist.insert(0,6)后,mylist中的值为_____
- 下面代码的执行结果是def change(mylist): mylist.append([1,2,3,4]) print(mylist) returnmylist = ["a","b","c"]change(mylist)print(mylist) A: ['a', 'b', 'c', [1, 2, 3, 4]]['a', 'b', 'c', [1, 2, 3, 4]] B: ['a', 'b', 'c', [1, 2, 3, 4]] C: ['a', 'b', 'c', 1, 2, 3, 4] D: ['a', 'b', 'c', 1, 2, 3, 4]['a', 'b', 'c', 1, 2, 3, 4]
- 已知lst=[[1,2,3]]*3,则lst[1][2]的值是: A: 0 B: 1 C: 2 D: 3