Skip to content

Instantly share code, notes, and snippets.

@tejastank
Created September 14, 2012 06:18
Show Gist options
  • Save tejastank/3720154 to your computer and use it in GitHub Desktop.
Save tejastank/3720154 to your computer and use it in GitHub Desktop.
Python Generate All possible Words : Tejas tank
import itertools
l = itertools.permutations(['v','i','r','t','u','a','l'])
tt = [ "".join(x) for x in list(l)]
print tt
here tt hoild all possible password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment