python4位随机验证码生成

时间:2021-08-06 03:01:13
【文件属性】:

文件名称:python4位随机验证码生成

文件大小:374B

文件格式:PY

更新时间:2021-08-06 03:01:13

python

print('正在生成验证码,请稍后...') import time time.sleep(1) st='0123456789abcdefghijklmnopqistuvwxyzABCDEFGHIJKLMNOPQISTUVWXYZ' import random x=random.randint(0,62) y=random.randint(0,62) z=random.randint(0,62) m=random.randint(0,62) #print(st[x],st[y],st[z],st[m]) print('验证码为:',st[x:(x+1):1],st[y:(y+1):1],st[z:(z+1):1],st[m:(m+1):1])


网友评论