Python之简单验证码实现

Posted 红桃6

tags:

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

def v_code():
ret = ‘‘
for i in range(5):
num = random.randint(0,9)
alf = chr(random.randint(65,122))
s = str(random.choice([num,alf]))
ret += s
return ret

print(v_code())









以上是关于Python之简单验证码实现的主要内容,如果未能解决你的问题,请参考以下文章

验证码之图片验证码

Python 实现简单图片验证码登录

Java----前端验证之验证码额实现

爬虫之简单验证码处理

Python实现简单的验证码模块

基于SVM的python简单实现验证码识别