标签:lse 字母 一个 dex code 个数 验证 == 验证码
# 四位验证码
"""四位数验证码""" code="" for i in range(4): print(i) index = random.randrange(4) #0-3 中随机取一个数 if index != i and index + 1 != i: code +=chr(random.randint(97,122)) #小写字母 elif index + 1 == i: code +=chr(random.randint(65,90)) #大写字母 else: code +=str(random.randint(1,9)) print(code)
标签:lse 字母 一个 dex code 个数 验证 == 验证码
原文地址:https://www.cnblogs.com/huxl1/p/14906169.html