Created
June 2, 2020 01:47
-
-
Save richardbwest/68db0a64f7f772c57b0de0c48ecfb5eb to your computer and use it in GitHub Desktop.
Brute force for loop version
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
chars = "abcdefghijklmNO123£$%" | |
for a in chars: | |
print(a) | |
for b in chars: | |
print(a+b) | |
for c in chars: | |
print(a+b+c) | |
for d in chars: | |
print(a+b+c+d) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment