大橙子网站建设,新征程启航

为企业提供网站建设、域名注册、服务器等服务

用python写个随机验证码

随机验证码

import random
li = []
for i in range(8):
    r = random.randrange(0,5)
    print(r)
    if r == 2 or r == 4:
        num = random.randrange(0,10)
        li.append(str(num))
    else:
        temp = random.randrange(65,123)
        char = chr(temp)
        li.append(char)
print(li)
result = ''.join(li)
print(result)

本文标题:用python写个随机验证码
当前路径:http://dzwzjz.com/article/ipcihj.html
在线咨询
服务热线
服务热线:028-86922220
TOP