以下哪个函数可以将列表元素x增加到列表尾部?
A: len()
B: str()
C: replace()
D: split()
A: len()
B: str()
C: replace()
D: split()
举一反三
- 以下哪个函数可以将列表元素x增加到列表尾部? A: list.append(x) B: list.remove(x) C: list.clear() D: list.sort()
- 如果要将一个字符串拆分为包含多个元素的列表,应该使用以下哪个函数实现? A: join B: split C: strip D: replace
- 【填空题】求len()函数的值: 已知 str = " python " ,则 len ( str ) 返回值为:(); 列表l = [ 1 , 2 , 3 , 4 , 5 ] ,则 len ( l )返回 列表元素个数为()
- 以下哪个Python内置函数可以返回列表对象中元素个数。 A: sorted() B: max() C: max() D: len()
- 已知 aList = [3, 5, 7] 则 aList[len(aList):] = [9]实现的是() A: 在列表尾部增加元素9 B: 在列表头部插入元素9 C: 在列表中间位置插入元素9 D: 修改列表尾部元素为9