随机验证码

import random
checkcode = ''
for i in range(4):
    current = random.randrange(0, 4)
    if current != i:
        temp = chr(random.randint(65, 90))
    else:
        temp = random.randint(0, 9)
    checkcode += str(temp)
print(checkcode)

  


posted @ 2019-05-04 14:39  张瑞桐  阅读(97)  评论(0编辑  收藏  举报