Created
September 14, 2012 06:18
-
-
Save tejastank/3720154 to your computer and use it in GitHub Desktop.
Python Generate All possible Words : Tejas tank
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
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