Advertisement
Guest User

Find that word

a guest
Jun 2nd, 2014
282
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. import hashlib
  2.  
  3. with open('sowpods.txt', 'r') as handle:
  4.     for line in handle:
  5.             line = (line.lower()).strip()
  6.             md5 = (hashlib.md5((line + "hskhdg7y786jhskjg78bjh").encode('utf-8')).hexdigest())
  7.             if(md5 == "f582895a86d99af585aaeb60426a03cf"): print("match pĆ„ \"" + line + "\"")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement