Home | Trees | Indices | Help |
---|
|
|
|||
float float(x) -> floating point number |
|||
int int(x[, base]) -> integer |
|||
str str(object) -> string |
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
number |
|
||
|
|||
character |
|
||
(div, mod) |
|
||
|
|||
|
|||
integer |
|
||
string |
|
||
integer |
|
||
value |
|
||
value |
|
||
|
|||
string |
|
||
integer |
|
||
|
|||
|
|||
|
|||
floating point number |
|
||
|
|
|||
level = 0
|
|||
None = None hash(x) |
|||
math This module is always available. |
|||
random Random variable generators. |
|||
string A collection of string operations (most are no longer used). |
|
Return the tuple ((x-x%y)/y, x%y). Invariant: div*y + mod == x.
|
Return a hash value for the object. Two objects with the same value have the same hash value. The reverse is not necessarily true, but likely.
|
max(a, b, c, ...[, key=func]) -> value With a single iterable argument, return its largest item. With two or more arguments, return the largest argument.
|
min(a, b, c, ...[, key=func]) -> value With a single iterable argument, return its smallest item. With two or more arguments, return the smallest argument.
|
Round a number to a given precision in decimal digits (default 0 digits). This always returns a floating point number. Precision may be negative.
|
|
mathThis module is always available. It provides access to the mathematical functions defined by the C standard.
|
randomRandom variable generators. integers -------- uniform within range sequences --------- pick random element pick random sample generate random permutation distributions on the real line: ------------------------------ uniform triangular normal (Gaussian) lognormal negative exponential gamma beta pareto Weibull distributions on the circle (angles 0 to 2pi) --------------------------------------------- circular uniform von Mises General notes on the underlying Mersenne Twister core generator: * The period is 2**19937-1. * It is one of the most extensively tested generators in existence. * Without a direct way to compute N steps forward, the semantics of jumpahead(n) are weakened to simply jump to another distant state and rely on the large period to avoid overlapping sequences. * The random() method is implemented in C, executes in a single Python step, and is, therefore, threadsafe.
|
stringA collection of string operations (most are no longer used). Warning: most of the code you see here isn't normally used nowadays. Beginning with Python 1.6, many of these functions are implemented as methods on the standard string object. They used to be implemented by a built-in module called strop, but strop is now obsolete itself. Public module variables: whitespace -- a string containing all characters considered whitespace lowercase -- a string containing all characters considered lowercase letters uppercase -- a string containing all characters considered uppercase letters letters -- a string containing all characters considered letters digits -- a string containing all characters considered decimal digits hexdigits -- a string containing all characters considered hexadecimal digits octdigits -- a string containing all characters considered octal digits punctuation -- a string containing all characters considered punctuation printable -- a string containing all characters considered printable
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Fri Dec 23 12:30:40 2011 | http://epydoc.sourceforge.net |