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