Popular recipes tagged "memorizing"http://code.activestate.com/recipes/tags/memorizing/2011-04-13T00:00:59-07:00ActiveState Code RecipesFibonacci Number Generator (Python) 2011-04-13T00:00:59-07:00Sunjay Varmahttp://code.activestate.com/recipes/users/4174115/http://code.activestate.com/recipes/577651-fibonacci-number-generator/ <p style="color: grey"> Python recipe 577651 by <a href="/recipes/users/4174115/">Sunjay Varma</a> (<a href="/recipes/tags/fibonacci/">fibonacci</a>, <a href="/recipes/tags/generator/">generator</a>, <a href="/recipes/tags/memorizing/">memorizing</a>, <a href="/recipes/tags/number/">number</a>). </p> <p>This recipe allows for individual number generation, and allows for generations of number ranges as well. </p> <p>The recipe automatically memorizes numbers generated before and keeps them through out the running of the script. This recipe cannot handle too large of numbers, but does act as a simple solution for most cases.</p>