hi i have a question about python which im a rookie at:
i have a text file which contains a list of words (around 23000) in alphabetical order, like a small dictionary each line is a word in that textfile
i have to make a programme that asks the user for nine letters, and then the programme is supposed to rerange these letters and find all words in the textfile which match this set of nine letters
im kind of stuck in the coding of this programme, and i would like some assistance please
this is what i've done
Nian = raw_input ("Type in nine letters :")
filename = "dictionary.txt"
fil = open(filename, "r")
lines = fil.read()
tx4 = lines.strip()
a = Nian[0]
b = Nian[1]
c = Nian[2]
d = Nian[3]
e = Nian[4]
f = Nian[5]
g = Nian[6]
h = Nian[7]
i = Nian[8]
for w in lines[0:23005]:
if a or b or c or d or e or f or g or h or i in lines:
print w
itertoolspackage for utility functions that generate things like permutations. – g.d.d.c Sep 20 '11 at 19:12