django验证码的使用: 验证码的作用:用于人机识别. 验证码 ###验证码: def code_str(request): from PIL import Image from PIL import ImageDraw,ImageFont from io import BytesIO #生成随机字符串,一个数组的形式 import random def get_random_color(): return (random.randint(0,255),random.randint(0,255…