Hacker News new | ask | show | jobs
by kroger 4847 days ago
Most of SICP can easily be implemented in Python since SICP focus on computational ideas and not on languages features (it doesn't use lisp macros, for instance).

The first 3 chapters should look good in most languages with support for high order functions. It starts to get tricky in chapter 4 since Lisp is homoiconic.

I started writing about learning SICP using python [1]. Maybe I should continue it.

[1] http://pedrokroger.net/2010/08/sicp-in-python-1-1-the-elemen...