Python_random模块
Posted Lucky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python_random模块相关的知识,希望对你有一定的参考价值。
1.random模块常用方法:
import random #生成0-1之间的伪浮点随机数(默认) print(random.random()) #生成2.0-5.0之间的伪浮点随机数 print(random.uniform(2.0,5.0)) #生成1-10之间的伪整数随机数 print(random.randint(1,10)) #设置种子 random.seed(11) print(random.random()) print(random.random()) random.seed(11) print(random.random())
以上是关于Python_random模块的主要内容,如果未能解决你的问题,请参考以下文章
CTS测试CtsWindowManagerDeviceTestCases模块的testShowWhenLockedImeActivityAndShowSoftInput测试fail项解决方法(代码片段