20、导入随机函数库random后,语句 print(random.random(),random.random(),random.random()) 的结果可能是()A.0.0 0.1 0.2B.0.8 0.9 1.0C.0.1 0.5 1.0D.其余三项都有可能
20、导入随机函数库random后,语句 print(random.random(),random.random(),random.random()) 的结果可能是()
A.0.0 0.1 0.2
B.0.8 0.9 1.0
C.0.1 0.5 1.0
D.其余三项都有可能
参考答案和解析
x= r.Next ( 10 , 2 0 ) ;
相关考题:
(8)设当前日期为2007年12月27日,星期四,则执行下列语句后的输出结果是。 Print Day(Now) Print Month(Now) Print Year(Now) Print Weekday(Now)
设当前日期为2008年4月28日,星期一,则执行下面语句后的输出结果为______。Print Day(Now)Print Month(Now)Print Year(Now)Print Weekday(Now)
random是python的标准库之一,用来完成一些随机数相关的任务,randint是random库中的函数,则下列引用函数库的写法正确的是:() A.importrandomB.fromrandintC.fromrandintD.importrandintfromrandom
下面关于文件的叙述中错误的是。 A.随机文件中各条记录的长度是相同的 B.打开随机文件时采用的文件存取方式应该是Random C.向随机文件中写数据应使用语句Print#文件号 D.打开随机文件与打开顺序文件一样,都使用Open语句
执行以下语句后,输出的结果是 a$="Good" b$="Afternoon" Print a$+b$ Print a$b $A.Goodaftenoon GoodAfternoonB.Good+ GoodAfternoonC.Good+ GoodAfternoonD.Good Good
语句Print "The answer is:";20/4-2的结果为( )。A、The answer is 20/4-2B、The answer is 3C、The answer is "20/4-2"D、非法语句
要产生[20,999]之间的随机整数可以使用以下哪个表达式?()A、(int)(20+Math.random()*97)B、 20+(int)(Math.random()*980)C、(int)Math.random()*999D、 20+(int)Math.random()*980
在Math类中random方法可以产生随机数。如果从1到100之间产生一个随机整数(大于等于1,小于等于100),并赋值给n,那么下面语句正确的是()。A、n=Math.round(Math.random(100))+1;B、n=Math.round(Math.random()*100)+1;C、n=Math.floor(Math.random(100))+1;D、n=Math.floor(Math.random()*100)+1;
单选题要产生[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错