Created
May 31, 2016 21:17
-
-
Save jfdm/d62ca00e4bb41bf8445a6a5797ae4998 to your computer and use it in GitHub Desktop.
Python is strange but amusing, but interesting, and with mypy I like it.
This file contains hidden or 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 Expr(object): | |
def __init__(self): | |
raise NotImplementedError | |
def eval(self): | |
raise NotImplementedError | |
class Value(Expr): | |
def __init__(self, value): | |
self.value = value | |
def eval(self): | |
return self.value | |
def __str__(self): | |
return str(self.value) | |
class Minus(Expr): | |
def __init__(self, expr): | |
self._expr = expr | |
def eval(self): | |
return self._expr.eval() * -1 | |
def __str__(self): | |
return "-{0}".format(str(self._expr)) | |
class BinOp(Expr): | |
def __init__(self, a, b, f, fstr): | |
self._a = a | |
self._b = b | |
self._op = f | |
self._opstr = fstr | |
def eval(self): | |
return self._op(self._a.eval(), self._b.eval()) | |
def __str__(self): | |
return "{1} {0} {2}".format( str(self._opstr), str(self._a), str(self._b)) | |
class Add(BinOp): | |
def __init__(self, a, b): | |
super(Add, self).__init__(a, b, (lambda x,y: x + y), "+") | |
def add(x,y): | |
return BinOp(x,y,lambda a,b : a + b, "+") | |
class Mul(BinOp): | |
def __init__(self, a, b): | |
super(Mul, self).__init__(a, b, (lambda x,y: x * y), "*") | |
class Sub(Add): | |
def __init__(self, a, b): | |
super(Sub, self).__init__(a, Minus(b)) | |
def eval(expr): | |
return expr.eval() | |
def main(): | |
for e in [ add(Minus(Value(4)), Value(5)) \ | |
, Add(Minus(Value(4)), Value(5)) \ | |
, Sub(Minus(Value(4)), Minus(Value(4))) \ | |
]: | |
print str(e) | |
print eval(e) | |
if __name__ == '__main__': | |
main() | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment