已知vec=[[1,2],[3,4]],则表达式[colforrowinvecforcolinrow]的值为__________________________。

题目

已知vec=[[1,2],[3,4]],则表达式[colforrowinvecforcolinrow]的值为__________________________。


相似考题
参考答案和解析
正确答案:[1,2,3,4]
更多“已知vec=[[1,2],[3,4]],则表达式[colforrowinvecforcolinrow]的值为__________________________。 ”相关问题
  • 第1题:

    表达式 list(zip([1,2], [3,4])) 的值为__________


    [(1, 3), (2, 4)]

  • 第2题:

    已知字典 dic={(1,2):3,(4,5):5,(7,8):9},则表达式 (1,2) in dic 的值为 ______________


    2

  • 第3题:

    8、已知 x=1,2 y=3,4 z=(x,y) 下列哪个表达式的值为4

    A.max(z)

    B.max(max(z))

    C.z[2][2]

    D.z[-1][-1]


    C 本题考查 x n 的导数.由( x n )′= nx n - 1 . y ′=3 x 2 ,得3 x 2 =12, x =±2.

  • 第4题:

    5、已知字典 dic={(1,2):3,(4,5):5,(7,8):9},则表达式 (1,2) in dic 的值为 ______________


    {6}

  • 第5题:

    表达式 list(zip([1,2], [3,4])) 的值为________________________。


    A