Lazy Evaluation - Laziness in Eager Languages

Laziness in Eager Languages

Python

In Python 2.x the range function computes a list of integers (eager or immediate evaluation):

>>> r = range(10) >>> print r >>> print r 3

In Python 3.x the range function returns an iterator which computes elements of the list on demand (lazy or deferred evaluation):

>>> r = range(10) >>> print(r) range(0, 10) >>> print(r) 3
This change to lazy evaluation saves execution time for large ranges which may never be fully referenced and memory usage for large ranges where only one or a few elements are needed at any time.

Python manifests lazy evaluation by implementing iterators (lazy sequences) unlike tuple or list sequences. For instance:

>>> list = range(10) >>> iterator = iter(list) >>> print list >>> print iterator >>> print iterator.next 0
The above example shows that lists are evaluated when called, but in case of iterator, the first element '0' is printed when need arises.
This section requires expansion.

Read more about this topic:  Lazy Evaluation

Famous quotes containing the words laziness, eager and/or languages:

    Six, or at most seven, hours’ sleep is, for a constancy, as much as you or anybody can want: more is only laziness and dozing, and is, I am persuaded, both unwholesome and stupefying.
    Philip Dormer Stanhope, 4th Earl Chesterfield (1694–1773)

    In European thought in general, as contrasted with American, vigor, life and originality have a kind of easy, professional utterance. American—on the other hand, is expressed in an eager amateurish way. A European gives a sense of scope, of survey, of consideration. An American is strained, sensational. One is artistic gold; the other is bullion.
    Wallace Stevens (1879–1955)

    The very natural tendency to use terms derived from traditional grammar like verb, noun, adjective, passive voice, in describing languages outside of Indo-European is fraught with grave possibilities of misunderstanding.
    Benjamin Lee Whorf (1897–1934)