要把5加到列表lst的末尾,用的是
A: lst.add(5)
B: lst.append(5)
C: lst.insert(5)
D: lst.addLast(5)
A: lst.add(5)
B: lst.append(5)
C: lst.insert(5)
D: lst.addLast(5)
举一反三
- 要把5加到列表lst的末尾,用的是()。 A: lst.add(5) B: lst.append(5) C: lst.addLast(5) D: lst.addEnd(5)
- 要把5加到lst的末尾,用的是
- 已知列表lst=[1,2,3,4,5],则以下哪个表达式的值不为5: A: lst[4] B: lst[-1] C: lst[5] D: len(lst)
- 已知列表lst=[‘唐’,’宋’,’元’,’清’],则将’明’这个朝代添加至列表lst的合适位置的表达式是: A: lst.append(‘明’) B: lst.insert(2,’明’) C: lst.insert(3,’明’) D: lst[3]=‘明’
- 如何获得列表 lst = [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]] 的列数? A: len(lst[0]) B: len(lst[1]) C: len(lst[2]) D: len(lst[3])