I'm currently going through LPTHW and I'm up to excercise 48 and it's the first time I've hit a brick wall.
Here's the first part of the test case I've been given
from nose.tools import *
from ex48 import lexicon
def test_direction():
assert_equal(lexicon.scan("north"), [('direction', 'north')])
result = lexicon.scan("north south east")
assert_equal(result, [('direction', 'north'),
('direction', 'south'),
('direction', 'east')])
This question has been asked here before, and I noticed my current solution so far is pretty identical to the answer provided by robbyt. Yet it still doesn't work.
def scan(thewords):
directions = [('direction', 'north'), ('direction', 'south'), ('direction', 'east')]
thewords = thewords.split()
sentence = []
for i in thewords:
if i in directions:
sentence.append(('direction', i))
else:
sentence.append(('error', i))
return sentence
So the question is: After taking the input (thewords), how do I search through the list of tuples correctly and then return the specific tuple it's a part of?
Thanks in advance for any sort answers and advice, really stuck with this one.

directionsto hold in your function. Does it need to hold the text'direction'three times? – Thomas K Sep 18 '11 at 11:48