This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LexiconC(object): | |
def __init__(self): | |
#constants | |
# TODO: Can we make these as constants so they can be accessed from out side the class with just the class name ? | |
self.C_DIRECTION_WORDS = "direction" | |
self.C_VERBS = "verb" | |
self.C_STOP_WORDS = "stop" | |
self.C_NOUNS = "noun" | |
self.C_NUMBER = "number" |