Created
March 2, 2022 15:52
-
-
Save hvuhsg/ee1129e301e0cdd644307473e62d5086 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
passwords = {} | |
for password in password_list: | |
if password in passwords.keys(): | |
passwords[password] = 0 | |
else: | |
passwords[password] += 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment