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

6位数(字母和数字)验证码

时间:2020-11-07 16:14:33      阅读:35      评论:0      收藏:0      [点我收藏+]

标签:rgb   and   random   div   数字   style   class   col   bsp   

import random
item = ‘‘
for i in range(6):
    num1 = random.randint(0,9)
    if num1 < 5:
        num =str(random.randint(0,9))
        item += num
    else:
        zm = random.randint(65,91)
        zm = chr(zm)
        item += zm
#chr()将数字变成对应的字母  ord()将字母变成对应的数字
print(item)

 

6位数(字母和数字)验证码

标签:rgb   and   random   div   数字   style   class   col   bsp   

原文地址:https://www.cnblogs.com/jdwy24/p/13936500.html

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