random 随机模块 验证码

Posted ch2020

tags:

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

 1 def v_code():
 2     code_str = ‘‘
 3     for i in range(5):
 4         import random
 5         num = random.randint(0,9)
 6         str1 = chr(random.randint(65,90))
 7         str2 = chr(random.randint(97,122))
 8         code_str +=str(random.choice([num,str1,str2]))
 9     return code_str
10 print(v_code())
11 输出:
12 0WT2Y

 

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

random模块产生随机手机验证码

random 模块,随机生成验证码

Python学习-------random模块(随机验证码)

random 随机模块 验证码

python的random模块(生成验证码)

Python使用PIL模块生成随机验证码