Skip to content

Instantly share code, notes, and snippets.

@mbarkhau
Created September 1, 2013 14:16
Show Gist options
  • Save mbarkhau/6404718 to your computer and use it in GitHub Desktop.
Save mbarkhau/6404718 to your computer and use it in GitHub Desktop.
def eval_sexpr(sexpr):
fn = sexpr[0]
args = sexpr[1:]
args = tuple(eval_sexpr(e) if isinstance(e, tuple) else e for e in args)
return fn(*args)
import operator as op
eval_sexpr((op.add, (op.mul, 3, 4), (op.mul, 2, 5)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment