Functional Python Programming

Author, A. M. Kuchling,, Release, 0.32,. In this document, we’ll take a tour of Python’s features suitable for implementing programs in a functional style. After an introduction to the concepts of … Read more

Similar

Python 100 times faster than Grumpy

Lately Grumpy has received some attention on reddit. YouTube Engineering showed a blog plost (Grumpy) which apparently proved that grumpy scaled much better then CPython on a Fibonacci benchmark. I felt like repeating this microbenchmark with Python to ch...

Read more »

Python Iter() Function

<p>Iterators in python iterate sequences, but also iterate objects that exhibit sequence behavior, such as keys in a dictionary, lines in a file, and so on.</p> <p>An iterator is an object that has a (more…)

Read more »