Hello,
You should add more characters to the chars variable as it's only alphanumeric now.
chars = "23456789abcdefghijkmnpqrstuvwxyzABCDEFGHKMNPQRSTUVWXYZ"
Also, while I understand why you removed letters and number that could be easily mistaken with one another, I'd leave them in. No one generates random password to remember them.
I'd use this to generate passwords that I store rather than remember.
Hello,
You should add more characters to the
charsvariable as it's only alphanumeric now.Also, while I understand why you removed letters and number that could be easily mistaken with one another, I'd leave them in. No one generates random password to remember them.
I'd use this to generate passwords that I store rather than remember.