Created
January 30, 2016 07:49
-
-
Save agusmakmun/85fd56f55941f28ded53 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
>>> from itertools import permutations | |
>>> perms = [''.join(p)+"@gmail.com" for p in permutations('abc', 3)] | |
>>> for x in range(0, len(perms)): | |
... print (perms[x]) | |
... | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
[email protected] | |
>>> | |
#from: https://www.facebook.com/photo.php?fbid=1180891021938983 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment