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

验证码

时间:2018-07-30 14:45:32      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:rand   alpha   list   imp   highlight   class   int   pytho   and   

import random
def gen_check():
    alpha_list = [i for i in range(65,123) if i<91 or i>96]
    check_str = ""
    for i in range(5):
        alpha = chr(random.choice(alpha_list ))
        check_str += str(random.choice([alpha,random.randint(0,9)]))
    return check_str

for i in range(9):
    print(gen_check() )

  

验证码

标签:rand   alpha   list   imp   highlight   class   int   pytho   and   

原文地址:https://www.cnblogs.com/xiesongyou/p/9390120.html

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