创建随机码!!

import random
def v_code():
    code = ''
    for i in range(5):
            num = random.randint(0,9)
            alf = chr(random.randint(65,122))
            add = random.choice([num,alf])
            code += str(add)
            return code
print(v_code())

 

posted @ 2016-12-13 10:06  打不死的--蟑螂  阅读(105)  评论(0编辑  收藏  举报