单项选择题
能在列表x 的尾部添加一个元素[3]的代码是()。
A.x.append(3)B.x.append([3])C.x.extend(3)D.x.extend([3])
单项选择题 已知x =set(filter(lambda x:x.isdigit(),’a12b12c12d12’)),则len(x)的值为()。
单项选择题 print(’{1},{0}’.format(80,90))的输出结果为()。
单项选择题 已知x=[1,2,3],执行x.extend([4,5])后,len(x)的值为()。