生成随机验证码

import random

checkcode = ''
for 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
原文地址:https://www.cnblogs.com/fei2232/p/8527321.html