#!/usr/bin/python import re password = 'loser' wordlist = '/home/david/Challenge-You/wordlist.txt' try: words = open(wordlist, 'r').readlines() except IOError, e: print "Sorry no words" for word in words: word = word.replace("\n","") if password in word: print "The password is: ", word else: passI could not figure out how to split the file into words.
I removed the import re as that was left over from my experimenting. -- Powered by Gentoo GNU/LINUX http://www.linuxcrazy.com pgp.mit.edu _______________________________________________ Tutor maillist - [email protected] http://mail.python.org/mailman/listinfo/tutor
