Created
September 13, 2022 14:01
-
-
Save hypnguyen1209/9a1d7a43548fa65984f8863f7bf0858e to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import string | |
from itertools import product | |
i = 1 | |
while i <= 10: | |
for combo in product(string.ascii_letters + string.digits, repeat=i): | |
print(''.join(combo)) | |
i = i+1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment