1. 首页
  2. 数据库
  3. 其它
  4. python生成随机验证码(中文验证码)示例

python生成随机验证码(中文验证码)示例

上传者: 2021-02-23 22:28:10上传 PDF文件 28.83KB 热度 25次
复制代码 代码如下:# -*- coding: utf-8 -*-import Image,ImageDraw,ImageFontimport randomimport math, string class RandomChar(): “””用于随机生成汉字””” @staticmethod def Unicode(): val = random.randint(0x4E00, 0x9FBF) return unichr(val) @staticmethod def GB2312(): head = random.randint(0xB0, 0xCF)
用户评论