[plt-scheme] HtDP in Python!

From: maxigas (maxigas at anargeek.net)
Date: Mon Feb 16 15:18:45 EST 2009

From: Shriram Krishnamurthi <sk at cs.brown.edu>
Subject: Re: [plt-scheme] HtDP in Python!
Date: Mon, 16 Feb 2009 13:38:07 -0500
> 2. Try the same with a tail-recursive program and see how far it goes.

It actually depends on how far you stretch the stack.  I usually do sth like this when i program
Python with recursions:

import sys
sys.setrecursionlimit(1000)




Posted on the users mailing list.