Skip to content

Instantly share code, notes, and snippets.

View ochilly's full-sized avatar

Sean Newton ochilly

  • USA
View GitHub Profile
@ochilly
ochilly / parser.py
Created November 8, 2017 01:59
Lp3thw ex49
class ParserError(Exception):
pass
class Sentence(object):
def __init__(self, subject, verb, obj):
# remember we take ('type', 'word') tuples and convert them
self.subject = subject[1]
self.verb = verb[1]