views:

80

answers:

1

Are there any python modules available for parsing and manipulating symbolic expressions in Python similar to how Lisp expressions are evaluated?

+3  A: 

pyparsing comes with an S-expression parser as an example, see here.

Alex Martelli