this works
while len(words) < 10000:
wd = ""
for i in ["".join(choice(alphabet)) for i in
range(randint(1,15))]:
wd += i
words[wd] = Noneanyway Thanks for that this is exactly what i need.. -- http://mail.python.org/mailman/listinfo/python-list
