Python-生成随机验证码
Posted 追梦的肥猪
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python-生成随机验证码相关的知识,希望对你有一定的参考价值。
import random ##生成随机验证码 def make_code(n): res = ‘‘ for i in range(n): current = random.randint(0,n) if current == i: tmp = chr(random.randint(65,90)) else: tmp = random.randint(0,9) res += str(tmp) print(res) make_code(5)
以上是关于Python-生成随机验证码的主要内容,如果未能解决你的问题,请参考以下文章