random随机模块
Posted duhong0520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了random随机模块相关的知识,希望对你有一定的参考价值。
import random
def v_code():
code = ‘‘
for i in range(5):
num=random.randint(0,9)
alf=chr(random.randint(65,90))
add=random.choice([num,alf])
code="".join([code,str(add)])
return code
print(v_code())
生成验证码
以上是关于random随机模块的主要内容,如果未能解决你的问题,请参考以下文章