python随机生成6位数验证码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python随机生成6位数验证码相关的知识,希望对你有一定的参考价值。

#随机生成6位数验证码

import random
code = []
for i in range(6):
    if i == str(random.randint(1,5)):
        code.append(i)
    else:
       temp =  random.randint(65,90)
       code.append(chr(temp))

print ‘‘.join(code)

 

###扩充random用法,随机生成树,和程序无关

print random.random()
print random.randint(1,9)
print random.randrange(1,8)

 












以上是关于python随机生成6位数验证码的主要内容,如果未能解决你的问题,请参考以下文章

python 之随机生成6位数验证码

Python生成随机五位数——模仿手机验证码

随机生成6位数验证码

随机生成六位验证码函数版(python)

随机验证码

生成一个四位数的随机验证码