日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

Python生成隨機驗證碼的兩種方法

系統 1675 0

使用python生成隨機驗證碼的方法有很多種,今天小編給大家分享兩種方法,大家可以靈活運用這兩種方法,設計出適合自己的驗證碼方法。

方法一:

利用range方法,對于range方法不清楚的同學,請參考文章《python開發的range()函數》

            
# -*- coding: utf-8 -*-
import random
def generate_verification_code(len=6):
 ''' 隨機生成6位的驗證碼 '''
 # 注意: 這里我們生成的是0-9A-Za-z的列表,當然你也可以指定這個list,這里很靈活
 # 比如: code_list = ['P','y','t','h','o','n','T','a','b'] # PythonTab的字母
 code_list = [] 
 for i in range(10): # 0-9數字
  code_list.append(str(i))
 for i in range(65, 91): # 對應從“A”到“Z”的ASCII碼
  code_list.append(chr(i))
 for i in range(97, 123): #對應從“a”到“z”的ASCII碼
  code_list.append(chr(i))
 myslice = random.sample(code_list, len) # 從list中隨機獲取6個元素,作為一個片斷返回
 verification_code = ''.join(myslice) # list to string
 return verification_code
          

方法二:

利用randint方法

            
# -*- coding: utf-8 -*-
import random
def generate_verification_code_v2():
 ''' 隨機生成6位的驗證碼 '''
 code_list = []
 for i in range(2):
  random_num = random.randint(0, 9) # 隨機生成0-9的數字
  # 利用random.randint()函數生成一個隨機整數a,使得65<=a<=90
  # 對應從“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
          

測試:

code = generate_verification_code(6)
code2 = generate_verification_code_v2()
print code
print code2

輸出結果:

Glc5Tr
Hr6t7B

我個人更傾向于第一種方法,更加靈活,可以隨意設置驗證碼長度。

Python 隨機生成中文驗證碼

            
# -*- coding: utf-8 -*- 
import Image,ImageDraw,ImageFont 
import random 
import math, string 
class RandomChar(): 
 """用于隨機生成漢字""" 
 @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) 
          

更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 天镇县| 九江县| 什邡市| 渝北区| 方山县| 沅江市| 永昌县| 博湖县| 买车| 清水河县| 仁怀市| 洞口县| 郓城县| 滨海县| 日土县| 应城市| 焉耆| 炉霍县| 荥阳市| 高要市| 洱源县| 敖汉旗| 林甸县| 徐闻县| 马关县| 专栏| 台北市| 怀远县| 修武县| 湘潭县| 临朐县| 德州市| 柘城县| 上思县| 罗田县| 土默特右旗| 临安市| 赞皇县| 罗甸县| 金乡县| 遂昌县|