使用Python生成随机简单的验证码

Posted

tags:

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

简单的生成验证码


import random


code = []

for i in range(5):

    if i == random.randint(1,9):#随机生成1-9的数字

        code.append(str(random.randint(1,9)))

    else:

        temp = random.randint(65,90)

        code.append(chr(temp))#随机生成A-Z的字母

print ‘‘.join(code)



本文出自 “赶不上的脚步” 博客,请务必保留此出处http://xxmspace.blog.51cto.com/1056016/1774877

以上是关于使用Python生成随机简单的验证码的主要内容,如果未能解决你的问题,请参考以下文章

python生成简单的验证码

Python使用PIL模块生成随机验证码

python生成随机验证码

python 生成随机验证码

Python生成随机验证码

Python生成随机验证码