I vaguely remember toying with newLISP [1] almost a decade ago, but I'd like to start exploring the language again and write some hobbyist-level programs in it.<p>[1]: http://www.newlisp.org/
Oh God, Newlisp. Don't worry about that. Start with Common Lisp. It's probably the most Pythonic in that it's built for building real applications in. SBCL is the open source implementation everyone seems to favor.<p>Runners up are Racket and Guile.<p>The "Lisps in Python" (like Hy and Hissp) are nice, but they're not very Lispy. More like Python with sexpr syntax. For Lisp on a Python runtime, I recommend Calysto Scheme for messing around: <a href="https://github.com/Calysto/calysto_scheme">https://github.com/Calysto/calysto_scheme</a><p>It's slow, but it's full Scheme.
A good starting point might be Hy [0]. Its claim to fame is being a LISP embedded in Python.<p>[0]: <a href="https://github.com/hylang/hy">https://github.com/hylang/hy</a>