To Clarify The Above Rules, Here's Some Example Python Code, Equivalent To The Built-In Hash, For Computing The Hash of A Rational Number,, or
To Clarify The Above Rules, Here's Some Example Python Code, Equivalent To The Built-In Hash, For Computing The Hash of A Rational Number,, or
"""
P = sys.hash_info.modulus
# Remove common factors of P. (Unnecessary if m and n already
coprime.)
while m % P == n % P == 0:
m, n = m // P, n // P
if n % P == 0:
hash_value = sys.hash_info.inf
else:
# Fermat's Little Theorem: pow(n, P-1, P) is 1, so
# pow(n, P-2, P) gives the inverse of n modulo P.
hash_value = (abs(m) % P) * pow(n, P - 2, P) % P
if m < 0:
hash_value = -hash_value
if hash_value == -1:
hash_value = -2
return hash_value
def hash_float(x):
"""Compute the hash of a float x."""
if math.isnan(x):
return sys.hash_info.nan
elif math.isinf(x):
return sys.hash_info.inf if x > 0 else -sys.hash_info.inf
else:
return hash_fraction(*x.as_integer_ratio())
def hash_complex(z):
"""Compute the hash of a complex number z."""
hash_value = hash_float(z.real) + sys.hash_info.imag *
hash_float(z.imag)
# do a signed reduction modulo 2**sys.hash_info.width
M = 2**(sys.hash_info.width - 1)
hash_value = (hash_value & (M - 1)) - (hash_value & M)
if hash_value == -1:
hash_value = -2
return hash_value
Iterator Types
Python supports a concept of iteration over containers. This is implemented using two distinct
methods; these are used to allow user-defined classes to support iteration. Sequences, described
below in more detail, always support the iteration methods.
One method needs to be defined for container objects to provide iteration support:
container.__iter__()
Return an iterator object. The object is required to support the iterator protocol described
below. If a container supports different types of iteration, additional methods can be
provided to specifically request iterators for those iteration types. (An example of an
object supporting multiple forms of iteration would be a tree structure which supports
both breadth-first and depth-first traversal.) This method corresponds to
the tp_iter slot of the type structure for Python objects in the Python/C API.
The iterator objects themselves are required to support the following two methods, which
together form the iterator protocol:
iterator.__iter__()
Return the iterator object itself. This is required to allow both containers and iterators to
be used with the for and in statements. This method corresponds to the tp_iter slot
of the type structure for Python objects in the Python/C API.
iterator.__next__()
Return the next item from the container. If there are no further items, raise
the StopIteration exception. This method corresponds to the tp_iternext slot of
the type structure for Python objects in the Python/C API.
Python defines several iterator objects to support iteration over general and
specific sequence types, dictionaries, and other more specialized forms. The
specific types are not important beyond their implementation of the iterator
protocol.
Generator Types
Python’s generators provide a convenient way to implement the iterator protocol.
If a container object’s __iter__() method is implemented as a generator, it will
automatically return an iterator object (technically, a generator object) supplying
the __iter__() and __next__() methods. More information about generators
can be found in the documentation for the yield expression.
This table lists the sequence operations sorted in ascending priority. In the
table, s and t are sequences of the same type, n, i, j and k are integers and x is an
arbitrary object that meets any type and value restrictions imposed by s.
Sequences of the same type also support comparisons. In particular, tuples and lists
are compared lexicographically by comparing corresponding elements. This means
that to compare equal, every element must compare equal and the two sequences
must be of the same type and have the same length. (For full details
see Comparisons in the language reference.)
Notes:
>>>
>>>
>>>
Notes:
class list([iterable])
Lists may be constructed in several ways:
The constructor builds a list whose items are the same and in the same order as iterable’s
items. iterable may be either a sequence, a container that supports iteration, or an iterator
object. If iterable is already a list, a copy is made and returned, similar
to iterable[:]. For
example, list('abc') returns ['a', 'b', 'c'] and list( (1, 2, 3) ) retur
ns [1, 2, 3]. If no argument is given, the constructor creates a new empty list, [].
sort(*, key=None, reverse=False)
This method sorts the list in place, using only < comparisons between items. Exceptions
are not suppressed - if any comparison operations fail, the entire sort operation will fail
(and the list will likely be left in a partially modified state).
key specifies a function of one argument that is used to extract a comparison key from
each list element (for example, key=str.lower). The key corresponding to each item
in the list is calculated once and then used for the entire sorting process. The default
value of None means that list items are sorted directly without calculating a separate key
value.
reverse is a boolean value. If set to True, then the list elements are sorted as if each
comparison were reversed.
This method modifies the sequence in place for economy of space when sorting a large
sequence. To remind users that it operates by side effect, it does not return the sorted
sequence (use sorted() to explicitly request a new sorted list instance).
The sort() method is guaranteed to be stable. A sort is stable if it guarantees not to
change the relative order of elements that compare equal — this is helpful for sorting in
multiple passes (for example, sort by department, then by salary grade).
For sorting examples and a brief sorting tutorial, see Sorting HOW TO.
class tuple([iterable])
Tuples may be constructed in a number of ways:
The constructor builds a tuple whose items are the same and in the same order
as iterable’s items. iterable may be either a sequence, a container that supports iteration,
or an iterator object. If iterable is already a tuple, it is returned unchanged. For
example, tuple('abc') returns ('a', 'b', 'c') and tuple( [1, 2, 3] ) r
eturns (1, 2, 3). If no argument is given, the constructor creates a new empty
tuple, ().
Note that it is actually the comma which makes a tuple, not the parentheses. The
parentheses are optional, except in the empty tuple case, or when they are needed to
avoid syntactic ambiguity. For example, f(a, b, c) is a function call with three
arguments, while f((a, b, c)) is a function call with a 3-tuple as the sole argument.