Kaydet (Commit) 77a64e71 authored tarafından Ezio Melotti's avatar Ezio Melotti

#7746: rephrase a sentence

üst a3112d14
...@@ -24,9 +24,8 @@ algebra" making it possible to construct specialized tools succinctly and ...@@ -24,9 +24,8 @@ algebra" making it possible to construct specialized tools succinctly and
efficiently in pure Python. efficiently in pure Python.
For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a For instance, SML provides a tabulation tool: ``tabulate(f)`` which produces a
sequence ``f(0), f(1), ...``. This toolbox provides :func:`imap` and sequence ``f(0), f(1), ...``. The same effect can be achieved in Python
:func:`count` which can be combined to form ``imap(f, count())`` to produce an by combining :func:`imap` and :func:`count` to form ``imap(f, count())``.
equivalent result.
These tools and their built-in counterparts also work well with the high-speed These tools and their built-in counterparts also work well with the high-speed
functions in the :mod:`operator` module. For example, the multiplication functions in the :mod:`operator` module. For example, the multiplication
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment