簡単な認証コードプログラム


#!/usr/bin/env python
#-*-coding=utf-8 -*-
#AUTHOR:duwentao

import random

chechkcode = ''

for i in range(4):

    current = random.randrange(0,4)
    
    #  
    if current == i:

        tmp = chr(random.randint(65,90))
    #  
    else:
        tmp = random.randint(0,9)

    chechkcode += str(tmp)

print(chechkcode)