Subscribe and press the like button.
If you want me to make another say in the comments
Here is the code:
from random import *
from captcha.image import ImageCaptcha
image = ImageCaptcha(width = 700, height = 200)
cap = []
for i in range(10):
n = randint(0,9)
cap.append(str(n))
data = image.generate(cap)
image.write(cap,"captcha.png")