码迷,mamicode.com
首页 > 编程语言 > 详细

Python随机字符串验证码

时间:2018-03-11 02:48:25      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:number   amp   验证码   pre   sel   col   nbsp   sample   and   


def code_get(self): source = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] #数字验证码 # source = [ ‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘, ‘F‘, ‘G‘, ‘H‘,‘I‘,‘J‘, ‘K‘,‘L‘, ‘M‘, ‘N‘,‘O‘,‘P‘,‘Q‘,‘R‘, # ‘S‘, ‘T‘, ‘U‘, ‘V‘, ‘W‘, ‘Z‘,‘X‘, ‘Y‘] #字母验证码 return ‘‘.join(random.sample(source, number)) # number是生成验证码的位数

 

Python随机字符串验证码

标签:number   amp   验证码   pre   sel   col   nbsp   sample   and   

原文地址:https://www.cnblogs.com/ygj0930/p/8542695.html

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