Search found 3 matches

by mauricemoss
Wed Oct 12, 2011 6:22 pm
Forum: Challenges Solved
Topic: 3280
Replies: 20
Views: 2552

Here my solution in python: text = open('rfc3280.txt').read().lower().replace('.', '').replace(',', '') textlist = text.split() niner_list = [] niner_dic = {} for word in textlist: if len(word) == 9: niner_list.append(word) for word in niner_list: niner_dic[niner_list.count(word)] = word print niner...
by mauricemoss
Wed Oct 12, 2011 5:23 pm
Forum: Challenges Solved
Topic: Ave
Replies: 17
Views: 2727

I did it by hand, too, but by the help of the following Python Script: alphabet_source = open('alphabet.txt', 'r') alphabet = {} for line in alphabet_source: line = line.strip() zuordnung = line.split(" ") alphabet[zuordnung[0]] = zuordnung[1] alphabet_source.close() input_sentence = list(...
by mauricemoss
Fri Oct 07, 2011 3:44 pm
Forum: Challenges Solved
Topic: Lorem Ipsum
Replies: 34
Views: 8752

That Python code did if for me:

Code: Select all

text = open('lorem.txt').read().lower().replace('.', '').replace(',', '')
textlist = text.split()
for word in textlist:
	if text.count(word) == 1:
		print(word)