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

随机生成验证码

时间:2017-12-20 16:48:36      阅读:99      评论:0      收藏:0      [点我收藏+]

标签:class   gpo   大小   post   str   print   随机   color   结果   

要求有大小写和数字参杂。

l = []
for i in range(6):
    sst = chr(random.randint(65,90))
    num = str(random.randint(0,9))
    ssg = chr(random.randint(97,122))
    ret = random.choice([sst,ssg,num])
    l.append(ret)
print(‘‘.join(l))

结果:

GIe3E7

 

随机生成验证码

标签:class   gpo   大小   post   str   print   随机   color   结果   

原文地址:http://www.cnblogs.com/yangmingxianshen/p/7837567.html

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