This website collects cookies to deliver better user experience
Now if we print/generate the password every time ,there is a predictable format, first numbers then special etc..
password = list(numPart + spPart + smallPart + bigPart) random.shuffle(password) password_str = ''.join(password) return password_str
28
0