A: np.random.radint(6, 15, 40)
B: np.random.uniform(8,12,40)
C: np.random.normal(10, 5, 40)
D: np.random.normal(10, 1, 40)
举一反三
- 中国大学MOOC: 淘宝卖家销售10斤一箱的陕西红富士,应采用________来模拟生成40箱苹果的重量较合理。
- dice1 = random(4,10);则dice1 = ( )。 A: 4 B: 7 C: 9 D: 10 E: 14 F: 6 G: 40
- 阅读下面的代码,输出结果是( ) public static void main(String[] args) { Random random1 = new Random(10); Random random2 = new Random(10); for(int i=0;i<5;i++){ System.out.print(random1.nextInt(5)); } for(int i=0;i<5;i++){ System.out.print(random2.nextInt(5)); } }
- 在Python内置的random库中,可用于生成一个[1,10]之间随机整数的函数调用是:____________。 A: random(10) B: randint(1,10) C: randomint(1,11) D: uniform(1,10)
- 蛋白质、脂肪、糖提供的能1*分别占婴儿每日所需能量的() A: 10%〜15%、25%〜40%、50%〜60% B: 10%〜15%、35%〜50%、50%〜60% C: 10%〜20%、30%〜40%、40%〜50% D: 15%〜30%、40%〜50%、30%〜40% E: 20%〜40%、30%〜60%、30%〜40%
内容
- 0
以下代码()能够创建一个值范围在1到10的数组 A: np.arange(1,11) B: import numpy as np np.arrange(1,11) C: import numpy as np np.arrange(1,10) D: import numpy as np np(1,11)
- 1
绩效指标权重应控制在() A: 5%-30% B: 10%30% C: 5%-40% D: 10%-40%
- 2
绩效指标权重应控制在()。 A: 5%-30% B: 10%-30% C: 5%-40% D: 10%-40%
- 3
阅读下面的代码 public static void main(String[] args) { Random random1 = new Random(10); Random random2 = new Random(10); for(int i=0;i<5;i++){ System.out.print(random1.nextInt(5)); } System.out.println(); for(int i=0;i<5;i++){ System.out.print(random2.nextInt(5)); } } 下列选项中,程序的输出结果是
- 4
阅读下面的代码,输出结果是() public static void main(String[] args) { Random random1 = new Random(10); Random random2 = new Random(10); for(int i=0;i<5;i++){ System.out.print(random1.nextInt(5)); } for(int i=0;i<5;i++){ System.out.print(random2.nextInt(5)); } } A: 3.030130301E9 B: 5.04813268E9 C: 3.268023579E9 D: 1111111111