建立隨機密碼(驗證碼)

2021-10-22 16:22:41 字數 539 閱讀 9089

建立隨機密碼(驗證碼)

import string #string module裡包含了阿拉伯數字,ascii碼,特殊符號

import random #需要利用到choice

a =int

(input

('請輸入要求的密碼長度'))

b = string.digits + string.ascii_letters + string.punctuation #構建密碼池

c = string.digits #構建純數字密碼池

password =

""#命名乙個字串

for i in

range(0

,a):

#for loop 指定重複次數

password = password + random.choice(b)

#從密碼池中隨機挑選內容構建密碼

print

(password)

#輸出密碼

用以手機傳送驗證碼

隨機驗證碼

function window,document if object.prototype.tostring.call options object object else this options.numarr 0,1,2,3,4,5,6,7,8,9 split this options.lette...

驗證碼隨機生成

pip install captcha驗證碼隨機生成 python 版本 3.6 captcha 版本 0.3 from captcha.image import imagecaptcha import numpy as np import matplotlib.pyplot as plt from...

隨機生成驗證碼

coding utf 8 created on mon sep 16 01 21 02 2019 author administrator import random from captcha.image import imagecaptcha import numpy as np from pil...