网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

(1,2,3).append(4) 输出结果为:()

  • A、(1,2,3,4)
  • B、(1,2,3)
  • C、(4,1,2,3)
  • D、报错

参考答案

更多 “(1,2,3).append(4) 输出结果为:()A、(1,2,3,4)B、(1,2,3)C、(4,1,2,3)D、报错” 相关考题
考题 以下错误的定义语句是A)int x[][3]={{0},{1},{1,2,3}};B)int x[4][3]={{1,2,3},{1,2,3},{1,2,3},{1,2,3}};C)int x[4][]={{1,2,3},{1,2,3},{1,2,3},{1,2,3}};D)int x[][3]={1,2,3,4};

考题 下列错误的定义语句是( )。A.int x[ ][3]={{0},{1},{1,2,3}};B.int x[4][3]={{1,2,3},{1,2,3},{1,2,3},{1,2,3}};C.int x[4][ ]={{1,2,3},{1,2,3},{1,2,3},{1,2,3}};D.int x[ ][3]={1,2,3,4};

考题 print(set([1,2,3]))输出结果为: A.set([1,2,3])B.([1,2,3])C.{1,2,3}D.[1,2,3]

考题 VSV控制着HPC的()A、1,2,3,4级B、IGV,1,2,3级C、IGV,2,3,4级D、1,2,3级

考题 [1,2,3].append(4)的返回值是()A、[1,2,3,4]B、NoneC、[4,1,2,3]D、[1,2,4]

考题 [1,2,3]+"hello"的结果是()A、[1,2,3,4,5]B、[1,1,2,3,4,5]C、报错D、[1,2,3]

考题 [1,2,3].insert(0,4)的列表为值为()A、[1,2,3,4]B、NoneC、[4,1,2,3]D、[1,2,4]

考题 下列语句中,不能正确定义长度为4的数组a的语句是()A、 int[] a=new int[]{1,2,3,4};B、 int[] a= {1,2,3,4};C、 int[] a=new int[4]{1,2,3};D、 int[] a=new int[4]{1,2,3,4};

考题 print({1,2,3}-{3,4,6})输出结果为:()A、{-2,-2,-3}B、{2,2,3}C、{1,2}D、报错

考题 c=[1]deffore():c.append(2)fore()print(c)输出结果是()A、[1,2]B、[1,2,3]C、[1,2,3,4]D、程序异常

考题 已知x=[1,2,3],那么连续执行y=[1,2,3]和y.append(4)这两条语句之后,x的值为()。

考题 list(map(lambdax,y:x*y,[1,2,3],[4,5,6]))输出结果为:()A、[6,10,12]B、[4,10,18]C、[5,7,9]D、报错

考题 print(list(zip([1,2],[3,4])))输出结果为:()A、[1,2,3,4]B、[(1,2),(3,4)]C、[(1,3),(2,4)]D、报错

考题 执行[1,2,3,4].nam会()A、[1,2,3,4,5]B、[1,1,2,3,4,5]C、报错D、[1,2,3]

考题 已知列表x=[1,2,3],那么执行语句x.append(100),x的值为()A、[1,2,3,4]B、[1,2,3,100]C、[4,3,2,1]D、[3,1,2,3]

考题 单选题[1,2,3].append(4)的返回值是()A [1,2,3,4]B NoneC [4,1,2,3]D [1,2,4]

考题 填空题已知x=[1,2,3],那么连续执行y=[1,2,3]和y.append(4)这两条语句之后,x的值为()。

考题 单选题c=[1]deffore():c.append(2)fore()print(c)输出结果是()A [1,2]B [1,2,3]C [1,2,3,4]D 程序异常

考题 单选题执行[1,2,3,4].nam会()A [1,2,3,4,5]B [1,1,2,3,4,5]C 报错D [1,2,3]

考题 单选题[1,2,3]+"hello"的结果是()A [1,2,3,4,5]B [1,1,2,3,4,5]C 报错D [1,2,3]

考题 单选题已知列表x=[1,2,3],那么执行语句x.append(100),x的值为()A [1,2,3,4]B [1,2,3,100]C [4,3,2,1]D [3,1,2,3]

考题 单选题list(map(lambdax,y:x*y,[1,2,3],[4,5,6]))输出结果为:()A [6,10,12]B [4,10,18]C [5,7,9]D 报错

考题 单选题(1,2,3).append(4) 输出结果为:()A (1,2,3,4)B (1,2,3)C (4,1,2,3)D 报错

考题 单选题[1,2,3].insert(0,4)的列表为值为()A [1,2,3,4]B NoneC [4,1,2,3]D [1,2,4]

考题 单选题设集合A={1,2,3},B={2,3},C={1,3,4},则(A∩B)∪C等于(  ).A {1,2,3}B {1,2,4}C {1,3,4}D {1,2,3,4}

考题 单选题以下错误的定义语句是(  )。A int x[][3]={{0},{1},{1,2,3}};B int x[4][3]={{1,2,3},{1,2,3},{1,2,3},{1,2,3}};C int x[4][]={{1,2,3},{1,2,3},{1,2,3},{1,2,3}};D int x[][3]={1,2,3,4};

考题 单选题print({1,2,3}-{3,4,6})输出结果为:()A {-2,-2,-3}B {2,2,3}C {1,2}D 报错