1996-12-06 17:22:41 -04:00
|
|
|
% Contributed by Skip Montanaro, from the module's doc strings.
|
|
|
|
|
|
|
|
\section{Built-in Module \sectcode{operator}} % If implemented in C
|
|
|
|
\bimodindex{spam}
|
|
|
|
|
|
|
|
The \code{operator} module exports a set of functions implemented in C
|
|
|
|
corresponding to the intrinsic operators of Python. For example,
|
|
|
|
{}\code{operator.add(x, y)} is equivalent to the expression x+y. The
|
|
|
|
function names are those used for special class methods; variants without
|
1997-12-04 10:20:59 -04:00
|
|
|
leading and trailing \samp{__} are also provided for convenience.
|
1996-12-06 17:22:41 -04:00
|
|
|
|
|
|
|
The \code{operator} module defines the following functions:
|
|
|
|
|
|
|
|
\renewcommand{\indexsubitem}{(in module operator)}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{add}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a + b, for a and b numbers.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__add__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a + b, for a and b numbers.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{sub}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a - b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__sub__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a - b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{mul}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a * b, for a and b numbers.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__mul__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a * b, for a and b numbers.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{div}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a / b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__div__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a / b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{mod}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a \% b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__mod__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a \% b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{neg}{o}
|
|
|
|
Return o negated.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__neg__}{o}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return o negated.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{pos}{o}
|
|
|
|
Return o positive.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__pos__}{o}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return o positive.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{abs}{o}
|
|
|
|
Return the absolute value of o.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__abs__}{o}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the absolute value of o.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
\begin{funcdesc}{inv}{o}
|
|
|
|
Return the inverse of o.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__inv__}{o}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the inverse of o.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{lshift}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a shifted left by b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__lshift__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a shifted left by b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{rshift}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a shifted right by b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__rshift__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a shifted right by b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{and_}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the bitwise and of a and b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__and__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the bitwise and of a and b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{or_}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the bitwise or of a and b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__or__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the bitwise or of a and b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{concat}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a + b for a and b sequences.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__concat__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a + b for a and b sequences.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{repeat}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a * b where a is a sequence and b is an integer.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__repeat__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return a * b where a is a sequence and b is an integer.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{getitem}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the value of a at index b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__getitem__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the value of a at index b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{setitem}{a, b, c}
|
1996-12-06 17:22:41 -04:00
|
|
|
Set the value of a at index b to c.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__setitem__}{a, b, c}
|
1996-12-06 17:22:41 -04:00
|
|
|
Set the value of a at index b to c.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{delitem}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Set the value of a at index b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__delitem__}{a, b}
|
1996-12-06 17:22:41 -04:00
|
|
|
Set the value of a at index b.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{getslice}{a, b, c}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the slice of a from index b to index c-1.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__getslice__}{a, b, c}
|
1996-12-06 17:22:41 -04:00
|
|
|
Return the slice of a from index b to index c-1.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{setslice}{a, b, c, v}
|
1996-12-06 17:22:41 -04:00
|
|
|
Set the slice of a from index b to index c-1 to the sequence v.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__setslice__}{a, b, c, v}
|
1996-12-06 17:22:41 -04:00
|
|
|
Set the slice of a from index b to index c-1 to the sequence v.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{delslice}{a, b, c}
|
1996-12-06 17:22:41 -04:00
|
|
|
Delete the slice of a from index b to index c-1.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
1997-12-04 10:20:59 -04:00
|
|
|
\begin{funcdesc}{__delslice__}{a, b, c}
|
1996-12-06 17:22:41 -04:00
|
|
|
Delete the slice of a from index b to index c-1.
|
|
|
|
\end{funcdesc}
|
|
|
|
|
|
|
|
Example: Build a dictionary that maps the ordinals from 0 to 256 to their
|
|
|
|
character equivalents.
|
|
|
|
|
1997-07-17 13:34:52 -03:00
|
|
|
\bcode\begin{verbatim}
|
1996-12-06 17:22:41 -04:00
|
|
|
>>> import operator
|
|
|
|
>>> d = {}
|
|
|
|
>>> keys = range(256)
|
|
|
|
>>> vals = map(chr, keys)
|
|
|
|
>>> map(operator.setitem, [d]*len(keys), keys, vals)
|
1997-07-17 13:34:52 -03:00
|
|
|
\end{verbatim}\ecode
|