Learn Python The Hard Way-习题48 lexicon.py之我的实现

时间:2020-12-01 18:14:44

Learn Python The Hard Way-习题48 中要求自己写一个扫描器,直至lexicon_tests.py中的所有的测试都能通过。
自己写的过程中出现了好多问题,最终终于实现了,仅供参考。
Finally。

# _*_ coding:utf-8 _*_
__author__ = 'oukohou'
class Lexicon(object):

    def __init__(self):
        self.directions = ('south','north','west','east','center')
        self.verbs = ('go','kill','eat','run','tell','shoot','sing','love')
        self.stops = ('the','in','of','to','via')
        self.nouns = ('bear','princess','MissHei','tiger','dragon')
        self.sen = []

    def scan(self,sentence):
        self.sentence = sentence
        sentence = self.sentence.split(' ') # 断句。
        self.sen = [] # 由于使用的是同一个实例‘lexicon’的变量sen进行测试,
                      # 为了能够多次测试,需要在每次scan函数开始时将sen置空。

        for word in sentence:
            try:
                if word in self.directions:
                    self.sen.append(('direction',word))
                elif word in self.verbs:
                    self.sen.append(('verb',word))
                elif word in self.stops:
                    self.sen.append(('stop',word))
                elif word in self.nouns:
                    self.sen.append(('noun',word))
                else: # 不是字符串,则认为是数字
                    word = int(word)
                    self.sen.append(('number',word))
            except ValueError: # 捕获到int()函数的异常,则为error
                self.sen.append(('error',word))
        return self.sen

lexicon = Lexicon() # 注意到给出的test代码中是直接调用lexicon.scan("north"),
                    # scan为unbound函数,则显然lexicon是一个实例,需要先实例化

nosetests测试截图如下,但其实原例中什么都没输出,截图也就什么都没有。。。
Learn Python The Hard Way-习题48 lexicon.py之我的实现
哎呀我好逗。。。(^o^)/
哎呀想要输出也可以啊,加几个print就可以啦,我就不写啦,吃饭去啦啦啦啦啦啦啦。。。
Learn Python The Hard Way-习题48 lexicon.py之我的实现

我是弱逼,大神轻拍。欢迎批评,反正我也不会改。