前言 Pillow库有很多用途,本文使用Pillow来生成随机的验证码图片。 Pillow的用法参考:https://www.jb51.net/article/196007.htm 验证码是随机的,使用Python内置的random库来生成随机的颜色和随机的字符。 random的用法参考:https://www.jb51.net/article/196955.htm 一、验证码图片的效果 # coding=utf-8 import random from PIL import Image, ImageDraw, ImageFont width, height, font_size, font