Numbers (01234 ...) Alphabet (both uppercase and lowercase) Symbol (! # $ ...) You can create strings for all combinations of.
brute.py
# -*- coding: utf-8 -*-
from brute import brute
#Specify the length of the character string to be created in length
#If not specified, it will be a character string of length 3.
for s in brute(length=1):
print s
Recommended Posts