Advertisement
This is comment for paste
Untitled
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # The 'mnemonic' module contains the word list, so you can use it directly and make the code much shorter.
- import mnemonic
- your23words = "verify cool art wear bridge blast direct armed asthma leisure call mammal federal about embrace judge city crisp health rapid garlic duty old"
- m = mnemonic.Mnemonic('english')
- for word in m.wordlist:
- tested = your23words + ' ' + word
- if m.check(tested):
- print tested
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement