Dynamically brute-force all numerical combinations

As the title says I’m trying to get all possible numerical combinations for an unknown number of parameters. I don’t mind if you use pandas or numpy. See the code section to understand my problem easily. Any help would be appreciated. # n can be any integer. 4 is just an example. n = 4… Read More Dynamically brute-force all numerical combinations

do bruteforcing with python

I would like to do bruteforcing with python but with special parameters. So far I got import os ########################## #########algarithm######### x=0 for x in range(10,21): char=itertools.product("0123546798ABCDEFGHIJKLMNOPQRSTUVWXYZ#$qwertyuiopasdfghjklzxcvbnm",repeat=x) for pin in char: pinready=”.join(pin) print(pinready) The problem is that it goes through each one and it takes too long. I’d like for the first three characters to be… Read More do bruteforcing with python