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

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

假设random模块已导入,那么表达式 random.sample(range(20), 30) 的作用是生成30个不重复的整数。


参考答案和解析
×
更多 “假设random模块已导入,那么表达式 random.sample(range(20), 30) 的作用是生成30个不重复的整数。” 相关考题
考题 假设random模块已导入,那么表达式random.sample(range(10),20)的作用是生成20个不重复的整数。此题为判断题(对,错)。

考题 假设random模块已导入,那么表达式random.sample(range(10),7)的作用是生成7个不重复的整数。此题为判断题(对,错)。

考题 表达式sorted(random.sample(range(5),5))的值为_________________________。

考题 已知seq为长度大于10的列表,并且已导入random模块,那么[random.choice(seq)foriinrange(10)]和random.sample(seq,10)等价。此题为判断题(对,错)。

考题 假设已导入random标准库,那么表达式max([random.randint(1,10)foriinrange(10)])的值一定是10。此题为判断题(对,错)。

考题 假设n为整数,那么表达式n&1==n%2的值为_____________。

考题 假设random模块已导入,那么表达式random.sample(range(10),20)的作用是生成20个不重复的整数。

考题 假设re模块已成功导入,并且有pattern=re.compile(’^’+’/.’.join([r’/d{1,3}’foriinrange(4)])+’$’),那么表达式pattern.match(’192.168.1.103’)的值为None。

考题 假设re模块已导入,那么表达式re.findall(’(/d)//1+’,’33abcd112’)的值为()。

考题 假设正则表达式模块re已导入,那么表达式re.sub(’/d+’,’1’,’a12345bbbb67c890d0e’)的值为()。

考题 已知seq为长度大于10的列表,并且已导入random模块,那么[random.choice(seq)for i in range(10)]和random.sample(seq,10)等价。

考题 要产生[20,999]之间的随机整数可以使用以下哪个表达式?()A、(int)(20+Math.random()*97)B、 20+(int)(Math.random()*980)C、(int)Math.random()*999D、 20+(int)Math.random()*980

考题 假设random模块已导入,那么表达式random.sample(range(10),7)的作用是生成7个不重复的整数。

考题 假设正则表达式模块re已正确导入,那么表达式re.findall(’/d+?’,’abcd1234’)的值为()。

考题 假设math标准库已导入,那么表达式eval(’math.sqrt(4)’)的值为()。

考题 假设已导入random标准库,那么表达式max([random.randint(1,10)for i in range(10)])的值一定是10。

考题 假设正则表达式模块re已正确导入,那么表达式’’.join(re.findall(’/d+’,’abcd1234’))的值为()。

考题 填空题假设正则表达式模块re已正确导入,那么表达式re.sub(’(./s)//1+’,’//1’,’a a a a a b b’)的值为()。

考题 判断题假设random模块已导入,那么表达式random.sample(range(10),7)的作用是生成7个不重复的整数。A 对B 错

考题 填空题假设re模块已导入,那么表达式re.findall(’(/d)//1+’,’33abcd112’)的值为()。

考题 填空题表达式sorted(random.sample(range(5),5))的值为()。

考题 判断题假设已导入random标准库,那么表达式max([random.randint(1,10)for i in range(10)])的值一定是10。A 对B 错

考题 填空题假设math标准库已导入,那么表达式eval(’math.sqrt(4)’)的值为()。

考题 判断题已知seq为长度大于10的列表,并且已导入random模块,那么[random.choice(seq)for i in range(10)]和random.sample(seq,10)等价。A 对B 错

考题 填空题假设正则表达式模块re已正确导入,那么表达式re.findall(’/d+?’,’abcd1234’)的值为()。

考题 单选题要产生[20,999]之间的随机整数可以使用以下哪个表达式?()A (int)(20+Math.random()*97)B  20+(int)(Math.random()*980)C (int)Math.random()*999D  20+(int)Math.random()*980

考题 判断题假设random模块已导入,那么表达式random.sample(range(10),20)的作用是生成20个不重复的整数。A 对B 错

考题 填空题假设正则表达式模块re已导入,那么表达式re.sub(’/d+’,’1’,’a12345bbbb67c890d0e’)的值为()。