生成6位的随机验证码

Posted Zoe233

tags:

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

要求:生成6位的字母和数字组成的随机验证码。

实例1:

 1 import random
 2 identify_code=‘‘
 3 for i in range(1):
 4     for j in range(6):
 5         if i==j:
 6             code=chr(random.randint(65,90))
 7         else:
 8             code=random.randint(0,9)
 9         identify_code+=str(code)
10 
11 print(identify_code)

实例2:

 1 import random
 2 checkcode=‘‘
 3 for i in range(6):
 4     current=random.randrange(0,4)
 5     if current!=i:
 6         temp=chr(random.randint(65,90) or random.randint(97,122))
 7     else:
 8         temp=random.randint(0,9)
 9     checkcode+=str(temp)
10 print(checkcode)

 

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

实验任务四:随机验证码的生成

Python random随机生成6位验证码示例代码

Python random随机生成6位验证码示例代码

c语言产生一个随机的验证码(4位的随机字母和数字的组合),要求用户输入,给出长度不符的输入错位提示

在使用Math.random()生成6位随机数遇到的问题,并成功得到6位随机数

微信小程序中短信验证码登录全流程及代码