Search found 3 matches
- 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...
- Wed Oct 12, 2011 5:23 pm
- Forum: Challenges Solved
- Topic: Ave
- Replies: 17
- Views: 2727
- 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)