码迷,mamicode.com
首页 > 其他好文 > 详细

random 随机模块 验证码

时间:2020-03-02 14:25:33      阅读:50      评论:0      收藏:0      [点我收藏+]

标签:color   and   +=   span   random   range   port   turn   class   

 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 随机模块 验证码

标签:color   and   +=   span   random   range   port   turn   class   

原文地址:https://www.cnblogs.com/ch2020/p/12395226.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!