- explain the start argument to sum()

- various adjustments to sum() markup and explanation
This commit is contained in:
Fred Drake 2003-04-22 14:52:08 +00:00
parent d69b744531
commit 282be3ab89
1 changed files with 6 additions and 5 deletions

View File

@ -897,11 +897,12 @@ class C:
\versionadded{2.2}
\end{funcdesc}
\begin{funcdesc}{sum}{sequence\optional{start=0}}
Sums up the items of a \var{sequence}, from left to right, and returns
the total. The \var{sequence}'s items are normally numbers, and are
not allowed to be strings. The fast, correct way to join up a
sequence of strings is by calling \code{''.join(\var{sequence})}.
\begin{funcdesc}{sum}{sequence\optional{, start}}
Sums \var{start} and the items of a \var{sequence}, from left to
right, and returns the total. \var{start} defaults to \code{0}.
The \var{sequence}'s items are normally numbers, and are not allowed
to be strings. The fast, correct way to concatenate sequence of
strings is by calling \code{''.join(\var{sequence})}.
\versionadded{2.3}
\end{funcdesc}