Python random随机生成6位验证码示例代码
随机生成6位验证码代码
# -*- coding: utf-8 -*-
import random
def generate_verification_code():
‘‘‘ randomly generated a 6 bit verification code ‘‘‘
code_list = []
for i in range(10): # 0-9 number
code_list.append(str(i))
for i in range(65, 91): # A-Z
code_list.append(chr(i))
for i in range(97, 123): # a-z
code_list.append(chr(i))
myslice = random.sample(code_list, 6)
verification_code = ‘‘.join(myslice) # list to string
# print code_list
# print type(myslice)
return verification_code
def generate_verification_code2():
‘‘‘ randomly generated a 6 bit verification code ‘‘‘
code_list = []
for i in range(2):
random_num = random.randint(0, 9) # The number of randomly generated 0-9
# using random.randint () function to generate a random integer a, such that 65<=a<=90
# corresponding from "A" to "Z" of the ASCII code
a = random.randint(65, 90)
b = random.randint(97, 122)
random_uppercase_letter = chr(a)
random_lowercase_letter = chr(b)
code_list.append(str(random_num))
code_list.append(random_uppercase_letter)
code_list.append(random_lowercase_letter)
verification_code = ‘‘.join(code_list)
return verification_code
if __name__ == ‘__main__‘:
code = generate_verification_code()
code2 = generate_verification_code2()
print code
print code2执行结果
fF3UzK
1Db2Aa
相关推荐
xiaouncle 2020-07-31
guangyacyb 2020-06-14
jessieHJ 2020-05-31
Lexan 2020-04-15
wangqing 2020-04-07
xclxcl 2020-03-04
新路 2020-02-26
明天你好 2020-01-28
大脸猫脸大 2020-01-18
georgeandgeorge 2019-12-28
doubinning 2019-12-05
singer 2019-12-04
那年夏天 2019-11-17
xinhao 2019-11-12
jocleyn 2019-11-10
zhinanpolang 2019-08-23
prettyice 2010-03-24
wyqwilliam 2019-10-26