Skip to content

Instantly share code, notes, and snippets.

@agusmakmun
Created January 30, 2016 07:49
Show Gist options
  • Save agusmakmun/85fd56f55941f28ded53 to your computer and use it in GitHub Desktop.
Save agusmakmun/85fd56f55941f28ded53 to your computer and use it in GitHub Desktop.
>>> 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