We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this questionAre there any python modules available for parsing and manipulating symbolic expressions in Python similar to how Lisp expressions are evalu开发者_StackOverflow社区ated?
pyparsing (dead link - but see github: pyparsing) comes with an S-expression parser as an example, see here.
Also, depending on how much work with sexpressions you are doing you might want to check out python hy: https://github.com/hylang/hy
精彩评论