Python生成隨機(jī)驗(yàn)證碼的兩種方法
使用python生成隨機(jī)驗(yàn)證碼的方法有很多種,今天小編給大家分享兩種方法,大家可以靈活運(yùn)用這兩種方法,設(shè)計(jì)出適合自己的驗(yàn)證碼方法。
方法一:
利用range方法,對(duì)于range方法不清楚的同學(xué),請(qǐng)參考文章《python開(kāi)發(fā)的range()函數(shù)》
# -*- coding: utf-8 -*- import random def generate_verification_code(len=6): ''' 隨機(jī)生成6位的驗(yàn)證碼 ''' # 注意: 這里我們生成的是0-9A-Za-z的列表,當(dāng)然你也可以指定這個(gè)list,這里很靈活 # 比如: code_list = ['P','y','t','h','o','n','T','a','b'] # PythonTab的字母 code_list = [] for i in range(10): # 0-9數(shù)字 code_list.append(str(i)) for i in range(65, 91): # 對(duì)應(yīng)從“A”到“Z”的ASCII碼 code_list.append(chr(i)) for i in range(97, 123): #對(duì)應(yīng)從“a”到“z”的ASCII碼 code_list.append(chr(i)) myslice = random.sample(code_list, len) # 從list中隨機(jī)獲取6個(gè)元素,作為一個(gè)片斷返回 verification_code = ''.join(myslice) # list to string return verification_code
方法二:
利用randint方法
# -*- coding: utf-8 -*- import random def generate_verification_code_v2(): ''' 隨機(jī)生成6位的驗(yàn)證碼 ''' code_list = [] for i in range(2): random_num = random.randint(0, 9) # 隨機(jī)生成0-9的數(shù)字 # 利用random.randint()函數(shù)生成一個(gè)隨機(jī)整數(shù)a,使得65<=a<=90 # 對(duì)應(yīng)從“A”到“Z”的ASCII碼 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
測(cè)試:
code = generate_verification_code(6)
code2 = generate_verification_code_v2()
print code
print code2
輸出結(jié)果:
Glc5Tr
Hr6t7B
我個(gè)人更傾向于第一種方法,更加靈活,可以隨意設(shè)置驗(yàn)證碼長(zhǎng)度。
Python 隨機(jī)生成中文驗(yàn)證碼
# -*- coding: utf-8 -*-
import Image,ImageDraw,ImageFont
import random
import math, string
class RandomChar():
"""用于隨機(jī)生成漢字"""
@staticmethod
def Unicode():
val = random.randint(0x4E00, 0x9FBF)
return unichr(val)
@staticmethod
def GB2312():
head = random.randint(0xB0, 0xCF)
body = random.randint(0xA, 0xF)
tail = random.randint(0, 0xF)
val = ( head << 8 ) | (body << 4) | tail
str = "%x" % val
return str.decode('hex').decode('gb2312')
class ImageChar():
def __init__(self, fontColor = (0, 0, 0),
size = (100, 40),
fontPath = 'wqy.ttc',
bgColor = (255, 255, 255),
fontSize = 20):
self.size = size
self.fontPath = fontPath
self.bgColor = bgColor
self.fontSize = fontSize
self.fontColor = fontColor
self.font = ImageFont.truetype(self.fontPath, self.fontSize)
self.image = Image.new('RGB', size, bgColor)
def rotate(self):
self.image.rotate(random.randint(0, 30), expand=0)
def drawText(self, pos, txt, fill):
draw = ImageDraw.Draw(self.image)
draw.text(pos, txt, font=self.font, fill=fill)
del draw
def randRGB(self):
return (random.randint(0, 255),
random.randint(0, 255),
random.randint(0, 255))
def randPoint(self):
(width, height) = self.size
return (random.randint(0, width), random.randint(0, height))
def randLine(self, num):
draw = ImageDraw.Draw(self.image)
for i in range(0, num):
draw.line([self.randPoint(), self.randPoint()], self.randRGB())
del draw
def randChinese(self, num):
gap = 5
start = 0
for i in range(0, num):
char = RandomChar().GB2312()
x = start + self.fontSize * i + random.randint(0, gap) + gap * i
self.drawText((x, random.randint(-5, 5)), RandomChar().GB2312(), self.randRGB())
self.rotate()
self.randLine(18)
def save(self, path):
self.image.save(path)
相關(guān)文章
Python通過(guò)解析網(wǎng)頁(yè)實(shí)現(xiàn)看報(bào)程序的方法
這篇文章主要介紹了Python通過(guò)解析網(wǎng)頁(yè)實(shí)現(xiàn)看報(bào)程序的方法,比較實(shí)用的功能,需要的朋友可以參考下2014-08-08
如何解決Visdom全藍(lán),不顯示內(nèi)容問(wèn)題
這篇文章主要介紹了如何解決Visdom全藍(lán),不顯示內(nèi)容問(wèn)題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2024-06-06
Python?Prim算法通過(guò)遍歷墻實(shí)現(xiàn)迷宮的生成
之前,我們?cè)诹硗庖黄恼轮惺褂肞rim算法生成了一個(gè)完美迷宮,利用的是遍歷網(wǎng)格的方法,這一次,我們要教教大家用遍歷墻的方法生成,感興趣的可以收藏一下2023-01-01
Python數(shù)據(jù)分析之PMI數(shù)據(jù)圖形展示
這篇文章主要介紹了Python數(shù)據(jù)分析之PMI數(shù)據(jù)圖形展示,文章介紹了簡(jiǎn)單的python爬蟲(chóng),并使用numpy進(jìn)行了簡(jiǎn)單的數(shù)據(jù)處理,最終使用?matplotlib?進(jìn)行圖形繪制,實(shí)現(xiàn)了直觀的方式展示制造業(yè)和非制造業(yè)指數(shù)圖形,需要的朋友可以參考一下2022-05-05

