码迷,mamicode.com
首页 > 其他好文 > 详细

随机生成指定位数的验证码

时间:2019-10-01 16:34:18      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:图片   weight   src   ima   pre   char   png   imp   alt   


import random
import string

# 方法一:
def code_1(m, choice):
code=‘‘.join(random.sample(choice, m))
return code
print(code_1(4, string.ascii_letters + string.digits))

# 方法二:
def code_2(n):
code=‘‘
for i in range(n):
number=random.randint(0, 9) # 0-9
lower_char=chr(random.randint(97, 122)) # a-z
upper_char=chr(random.randint(65, 90)) # A-Z
char_1=random.choice([number, lower_char, upper_char])
code+=str(char_1)
return code

print(code_2(4)
 

先上代码。。。高效如我 ^ ^..。颜色怪怪的、不要介意哈~

Random详解

随机产生一个1-100之间的整数

print(random.randint(1,100))

技术图片

随机产生一个0-100之间的奇数

print(random.randrange (0,100,2))

技术图片

随机产生一个0-100之间的偶数

print(random.randrange ( 1 , 100 , 2))

技术图片

随机产生一个浮点数

print(random.random())
print(random.uniform(1,10))

技术图片

随机选择一个字符

print(random.choice(rqwertyuiop[]\asdfghjkl;zxcvbnm,./‘))

技术图片

 随机生成指定数量的字符

print(code=‘‘.join(random.sample(choice, m)))

 其中choice为备选字符串,m为生成的验证码个数

 

随机生成指定位数的验证码

标签:图片   weight   src   ima   pre   char   png   imp   alt   

原文地址:https://www.cnblogs.com/aqin1012/p/11615371.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!