Python-random模块

Posted yangzhuxian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-random模块相关的知识,希望对你有一定的参考价值。

 1 import random
 2 
 3 
 4 print(random.random())  # 随机从0-1之间的随机数
 5 
 6 print(random.randint(1,10))  # 随机从0-1之间的随机数
 7 
 8 print(random.choice(hello))  # 随机其中一个字符串
 9 print(random.choice([1,2,[hello],gg]))
10 
11 print(random.sample([1,2,4,5,7,8,9,6],2))  # 随机取多个值
12 
13 print(random.randrange(1,10))  # 1-10
14 
15 #练习随机数案例
16 # 生成验证码
17 def v_code():
18     code=‘‘
19     for i in range(0,10):
20         code+=str(random.randrange(0,10))
21         code+=chr(random.randrange(65,91))
22     # print(code)
23     generate_code=random.sample(code,5)
24     str_generate_code="".join(generate_code)
25     return str_generate_code
26 code=v_code()
27 print(code)

 

以上是关于Python-random模块的主要内容,如果未能解决你的问题,请参考以下文章

Python-random模块

python-random模块

python-random模块

python-random模块

python-random随机数

如何使用模块化代码片段中的LeakCanary检测内存泄漏?