• 2022-06-15
    补全如下代码,打印其中非NaN变量的数量。 1.importpandasaspd 2.importnumpyasnp 3.a=pd.DataFrame(np.arange(20).reshape(4,5)) 4.b=pd.DataFrame(np.arange(16).reshape(4,4)) 5.print((a+b).______())
  • count

    内容

    • 0

      请阅读下面一段程序:arr = np.arange(6).reshape(1, 2, 3)print(arr.transpose(2, 0, 1))执行上述程序后,最终输出的结果为( )。 A: [[[2 5]][[0 3]][[1 4]]] B: [[[1 4]] [[0 3]] [[2 5]]] C: [[[0 3]][[1 4]][[2 5]]] D: [[[0] [3]][[1] [4]][[2] [5]]]

    • 1

      执行下列程序段后,得到的结果是 。import tensorflow as tfimport numpy as npa = tf.constant(np.arange(48).reshape(3,2,4,2))b =tf.random.shuffle(a)c = tf.constant(np.arange(8).reshape(2,4))d =[email protected](d.sh A: (3, 2, 2, 2) B: (3, 2, 4, 4) C: (3, 4, 4, 2) D: (3, 4, 4)

    • 2

      ‍如下代码的输出是( )‌‍import numpy as np‌‍a = np.arange(6).reshape(3, 2)‌‍b = a.sum(axis=0)‌‍c = b.sum(axis=0)‌

    • 3

      以下代码的运行结果是( )。import numpy as np a=np.arange(8).reshape(2,4) s=a.sum(axis=0) print(s) A: [6 22] B: 28 C: 36 D: [4 6 8 10]

    • 4

      请补全代码,修改数组a的类型为整数。 import numpy as np a = np.arange(12, dtype=float).reshape((3,4)) a = a. (int)