Alphabetical A - M

absReturns the absolute value of a number (built-in).
absoluteReturns test (numpy).
acosReturns the arc cosine of x, in radians (math, numpy).
acoshReturns test (math, numpy).
addReturns test (numpy).
aiterReturns an asynchronous iterator for an asynchronous iterable (built-in).
allReturns True if all elements of the iterable are true (built-in).
alphabeticalReturns test (statistics).
and(operator) and operator
anextReturns the next item from a given asynchronous iterator (built-in).
angleReturns test (numpy).
anyReturns True if any element of the iterable is true (built-in).
aroundReturns test (numpy).
arrayCreate a new array. typecode is a single character (e.g. 'b', 'i', 'f') that decides the item type. (array)
asciiReturns a string containing a printable representation of an object (built-in).
ascii_lettersReturns the concatenation of all the alphabetical letters in lowercase and uppercase. (string).
ascii_lowercaseReturns the concatenation of all the alphabetical letters in lowercase. (string).
ascii_uppercaseReturns the concatenation of all the alphabetical letters in uppercase. (string).
asinReturns the arc sine of x, in radians. (math, numpy).
asinhReturns test (math, numpy).
atanReturns the arc tangent of x, in radians. (math, numpy).
atan2Returns atan(y / x), in radians. (math, numpy).
atanhReturns test (math, numpy).
betavariateReturns test (random).
binReturns the number converted to a binary string (built-in).
binomialvariateReturns test (random).
boolReturns the boolean True or False value (built-in).
breakpointSuspends execution and switches to the debugger (built-in).
bytearrayReturns a new array of bytes (built-in).
bytesReturns a new bytes object between 0 and 256 (built-in).
calcsizeReturns test (struct).
callableReturns True or False depending if the object argument appears callable (built-in).
capwordsReturns the capitalization of all the words (string).
cbrtReturns the cubed root. (math, numpy).
ceilReturns the ceiling of x (smallest integer >= x). (math, numpy).
choiceReturns one random element from a non-empty sequence (random).
choicesReturns test (random).
chrReturns the string representation for a Unicode character (built-in).
classmethodTransforms a method into a class method (built-in).
clipReturns test (numpy).
combReturns test (math).
compileCompile the source into a code or AST object (built-in, re).
complexConvert or create a complex number from a string or number (built-in).
conjugateReturns test (numpy).
convolveReturns test (numpy).
copysignReturns test (math, numpy).
correlationReturns the pearson and spearman correlation coefficients (statistics).
cosReturn the cosine of x radians. (math, numpy).
coshReturns test (math).
covarianceReturns the sample covariance for two variables (statistics).
crossReturns test (numpy).
crosstabReturns test (pandas).
cumprodReturns test (numpy).
cumsumReturns test (numpy).
cumulative_prodReturns test (numpy).
cumulative_sumReturns test (numpy).
date(class) Returns a class
datetime(class) Returns a class
deg2radReturns test (numpy).
degreesReturns the angle x from radians to degrees. (math).
delattrDeletes the named attribute (built-in).
dictCreate a new dictionary object (built-in).
diffReturns test (numpy).
digitsReturns the string '0123456789' (string).
dirReturns a list of the attributes and methods of an obj or the names in the current local scope (built-in).
distReturns test (math).
divideReturns test (numpy).
divmodReturns the remainder after division operator (built-in, numpy).
eReturns the mathematical constant e (2.718...). (math).
ediff1dReturns test (numpy).
enumerateReturns an enumerate object (built-in).
erfReturns the complementary error function at x (math).
erfcReturns the complementary error function at x (math).
escapeReturns test (re).
evalExecutes code that is evaluated as an expression (built-in).
execExecutes dynamic execution of code (built-in).
expReturns e raised to the power x (math).
exp2Returns 2 raised to the power x (math, numpy).
expm1Returns test (math, numpy).
expovariateReturns test (random).
fabsReturns the absolute value of a number as a floating point (math, numpy).
factorialReturns x! as an exact integer. (math).
filterConstructs an iterator (built-in).
findallReturns all non-overlapping matches in a string (re).
finditerReturns test (re).
fixReturns test (numpy).
floatReturn a floating point number constructed from a number or string x (built-in).
float_divideReturns test (numpy).
floorReturns the floor of x (largest integer <= x). (math, numpy).
floor_divideReturns test (numpy).
fmaReturns test (math).
fmaxReturns test (numpy).
fmeanReturns the fast, floating-point arithmetic mean, with optional weighting (statistics).
fminReturns test (numpy).
fmodReturns test (math, numpy).
formatConverts a value to specific format (built-in).
frexpReturns test (math, numpy).
frozensetReturns a frozenset object (built-in).
fsumReturns test (math).
fullmatchReturns test (re).
gammaReturns test (math).
gammavariateReturns test (random).
gaussReturns test (random).
gcdReturns the greatest common divisor of the specified integer arguments (math, numpy).
geometric_meanReturns the geometric mean of an array of numbers (statistics).
getattrReturns the named attribute (built-in).
getrandbitsReturns test (random).
getstateReturns test (random).
globalsReturns a dictionary representing the current module namespace (built-in).
gradientReturns test (numpy).
harmonic_meanReturns the harmonic mean of an array of numbers (statistics).
hasattrReturns True or False depending if the object has this attribute (built-in).
hashReturns the hash value of an object (Integer) (built-in).
heavisideReturns test (numpy).
helpInvoke the help system (built-in).
hexReturns the number converted to a hexadecimal string (built-in).
hexdigitsReturns the string '0123456789abcdefABCDEF' (string).
hypotReturns the Euclidean norm, sqrt(x*x + y*y). (math).
idReturns the identity of an object (built-in).
imgReturns test (numpy).
inoperator
infReturns floating-point positive infinity. (math).
inputReturns a line from standard input (built-in).
intReturns the number converted to an integer (built-in).
interpReturns test (numpy).
is(operator) Returns operator
iscloseReturns test (math).
isfiniteReturns True if x is neither infinite nor NaN. (math).
isinfReturns True if x is a positive or negative infinity. (math).
isinstanceReturns True if the object is an instance of the class (built-in).
isnanReturns True if x is a NaN (not a number). (math).
isqrtReturns the integer square root of the nonnegative integer n (math).
issubclassReturns True if the object is a subclass of the class (built-in).
iterReturns an iterator object (built-in).
kdeReturns the estimated probability density distribution of the data. (statistics).
kde_randomReturns test (statistics).
lcmReturns the least common multiple (math, numpy).
ldexpused to compute the expression x * (2**i) . (math, numpy).
lenReturns the length of an object (built-in).
lgammaReturns test (math).
linear_regressionReturns the slope and intercept for a simple linear regression (statistics).
listReturns a list data type (built-in).
localsReturns a dictionary representing the local symbol table (built-in).
logReturns the natural logarithm of x. (math, numpy).
log10Returns the base-10 logarithm of x. (math, numpy).
log1pReturns test (math, numpy).
log2Returns test (math, numpy).
logaddexpReturns test (numpy).
logaddexp2Returns test (numpy).
lognormvariateReturns test (random).
mapReturns an iterator that applies function to every iterable (built-in).
matchReturns determines if the regex matches at the start of a string (re).
maxReturns the largest item in an iterable or the largest of two or more arguments (built-in, numpy).
maximumReturns test (numpy).
meanReturns the arithmetic mean ("average") of data (statistics).
medianReturns the median (middle value) of data (statistics).
median_groupedReturns the median (50th percentile) of grouped data (statistics).
median_highReturns the high median of data (statistics).
median_lowReturns the low median of data (statistics).
memoryview(class) Returns a memoryview object (built-in).
minReturns the smallest item in an iterable or the smallest of two or more arguments (built-in, numpy).
minimumReturns test (numpy).
modReturns test (numpy).
modeReturns the single mode (most common value) of discrete or nominal data (statistics).
modfReturns test (math, numpy).
multimodeReturns the list of modes (most common values) of discrete or nominal data (statistics).
multiplyReturns test (numpy).
abs
Returns the absolute value of a number (built-in).
absolute
Returns test (numpy).
acos
Returns the arc cosine of x, in radians (math, numpy).
acosh
Returns test (math, numpy).
add
Returns test (numpy).
aiter
Returns an asynchronous iterator for an asynchronous iterable (built-in).
all
Returns True if all elements of the iterable are true (built-in).
alphabetical
Returns test (statistics).
and
(operator) and operator
anext
Returns the next item from a given asynchronous iterator (built-in).
angle
Returns test (numpy).
any
Returns True if any element of the iterable is true (built-in).
around
Returns test (numpy).
array
Create a new array. typecode is a single character (e.g. 'b', 'i', 'f') that decides the item type. (array)
ascii
Returns a string containing a printable representation of an object (built-in).
ascii_letters
Returns the concatenation of all the alphabetical letters in lowercase and uppercase. (string).
ascii_lowercase
Returns the concatenation of all the alphabetical letters in lowercase. (string).
ascii_uppercase
Returns the concatenation of all the alphabetical letters in uppercase. (string).
asin
Returns the arc sine of x, in radians. (math, numpy).
asinh
Returns test (math, numpy).
atan
Returns the arc tangent of x, in radians. (math, numpy).
atan2
Returns atan(y / x), in radians. (math, numpy).
atanh
Returns test (math, numpy).
betavariate
Returns test (random).
bin
Returns the number converted to a binary string (built-in).
binomialvariate
Returns test (random).
bool
Returns the boolean True or False value (built-in).
breakpoint
Suspends execution and switches to the debugger (built-in).
bytearray
Returns a new array of bytes (built-in).
bytes
Returns a new bytes object between 0 and 256 (built-in).
calcsize
Returns test (struct).
callable
Returns True or False depending if the object argument appears callable (built-in).
capwords
Returns the capitalization of all the words (string).
cbrt
Returns the cubed root. (math, numpy).
ceil
Returns the ceiling of x (smallest integer >= x). (math, numpy).
choice
Returns one random element from a non-empty sequence (random).
choices
Returns test (random).
chr
Returns the string representation for a Unicode character (built-in).
classmethod
Transforms a method into a class method (built-in).
clip
Returns test (numpy).
comb
Returns test (math).
compile
Compile the source into a code or AST object (built-in, re).
complex
Convert or create a complex number from a string or number (built-in).
conjugate
Returns test (numpy).
convolve
Returns test (numpy).
copysign
Returns test (math, numpy).
correlation
Returns the pearson and spearman correlation coefficients (statistics).
cos
Return the cosine of x radians. (math, numpy).
cosh
Returns test (math).
covariance
Returns the sample covariance for two variables (statistics).
cross
Returns test (numpy).
crosstab
Returns test (pandas).
cumprod
Returns test (numpy).
cumsum
Returns test (numpy).
cumulative_prod
Returns test (numpy).
cumulative_sum
Returns test (numpy).
date
(class) Returns a class
datetime
(class) Returns a class
deg2rad
Returns test (numpy).
degrees
Returns the angle x from radians to degrees. (math).
delattr
Deletes the named attribute (built-in).
dict
Create a new dictionary object (built-in).
diff
Returns test (numpy).
digits
Returns the string '0123456789' (string).
dir
Returns a list of the attributes and methods of an obj or the names in the current local scope (built-in).
dist
Returns test (math).
divide
Returns test (numpy).
divmod
Returns the remainder after division operator (built-in, numpy).
e
Returns the mathematical constant e (2.718...). (math).
ediff1d
Returns test (numpy).
enumerate
Returns an enumerate object (built-in).
erf
Returns the complementary error function at x (math).
erfc
Returns the complementary error function at x (math).
escape
Returns test (re).
eval
Executes code that is evaluated as an expression (built-in).
exec
Executes dynamic execution of code (built-in).
exp
Returns e raised to the power x (math).
exp2
Returns 2 raised to the power x (math, numpy).
expm1
Returns test (math, numpy).
expovariate
Returns test (random).
fabs
Returns the absolute value of a number as a floating point (math, numpy).
factorial
Returns x! as an exact integer. (math).
filter
Constructs an iterator (built-in).
findall
Returns all non-overlapping matches in a string (re).
finditer
Returns test (re).
fix
Returns test (numpy).
float
Return a floating point number constructed from a number or string x (built-in).
float_divide
Returns test (numpy).
floor
Returns the floor of x (largest integer <= x). (math, numpy).
floor_divide
Returns test (numpy).
fma
Returns test (math).
fmax
Returns test (numpy).
fmean
Returns the fast, floating-point arithmetic mean, with optional weighting (statistics).
fmin
Returns test (numpy).
fmod
Returns test (math, numpy).
format
Converts a value to specific format (built-in).
frexp
Returns test (math, numpy).
frozenset
Returns a frozenset object (built-in).
fsum
Returns test (math).
fullmatch
Returns test (re).
gamma
Returns test (math).
gammavariate
Returns test (random).
gauss
Returns test (random).
gcd
Returns the greatest common divisor of the specified integer arguments (math, numpy).
geometric_mean
Returns the geometric mean of an array of numbers (statistics).
getattr
Returns the named attribute (built-in).
getrandbits
Returns test (random).
getstate
Returns test (random).
globals
Returns a dictionary representing the current module namespace (built-in).
gradient
Returns test (numpy).
harmonic_mean
Returns the harmonic mean of an array of numbers (statistics).
hasattr
Returns True or False depending if the object has this attribute (built-in).
hash
Returns the hash value of an object (Integer) (built-in).
heaviside
Returns test (numpy).
help
Invoke the help system (built-in).
hex
Returns the number converted to a hexadecimal string (built-in).
hexdigits
Returns the string '0123456789abcdefABCDEF' (string).
hypot
Returns the Euclidean norm, sqrt(x*x + y*y). (math).
id
Returns the identity of an object (built-in).
img
Returns test (numpy).
in
operator
inf
Returns floating-point positive infinity. (math).
input
Returns a line from standard input (built-in).
int
Returns the number converted to an integer (built-in).
interp
Returns test (numpy).
is
(operator) Returns operator
isclose
Returns test (math).
isfinite
Returns True if x is neither infinite nor NaN. (math).
isinf
Returns True if x is a positive or negative infinity. (math).
isinstance
Returns True if the object is an instance of the class (built-in).
isnan
Returns True if x is a NaN (not a number). (math).
isqrt
Returns the integer square root of the nonnegative integer n (math).
issubclass
Returns True if the object is a subclass of the class (built-in).
iter
Returns an iterator object (built-in).
kde
Returns the estimated probability density distribution of the data. (statistics).
kde_random
Returns test (statistics).
lcm
Returns the least common multiple (math, numpy).
ldexp
used to compute the expression x * (2**i) . (math, numpy).
len
Returns the length of an object (built-in).
lgamma
Returns test (math).
linear_regression
Returns the slope and intercept for a simple linear regression (statistics).
list
Returns a list data type (built-in).
locals
Returns a dictionary representing the local symbol table (built-in).
log
Returns the natural logarithm of x. (math, numpy).
log10
Returns the base-10 logarithm of x. (math, numpy).
log1p
Returns test (math, numpy).
log2
Returns test (math, numpy).
logaddexp
Returns test (numpy).
logaddexp2
Returns test (numpy).
lognormvariate
Returns test (random).
map
Returns an iterator that applies function to every iterable (built-in).
match
Returns determines if the regex matches at the start of a string (re).
max
Returns the largest item in an iterable or the largest of two or more arguments (built-in, numpy).
maximum
Returns test (numpy).
mean
Returns the arithmetic mean ("average") of data (statistics).
median
Returns the median (middle value) of data (statistics).
median_grouped
Returns the median (50th percentile) of grouped data (statistics).
median_high
Returns the high median of data (statistics).
median_low
Returns the low median of data (statistics).
memoryview
(class) Returns a memoryview object (built-in).
min
Returns the smallest item in an iterable or the smallest of two or more arguments (built-in, numpy).
minimum
Returns test (numpy).
mod
Returns test (numpy).
mode
Returns the single mode (most common value) of discrete or nominal data (statistics).
modf
Returns test (math, numpy).
multimode
Returns the list of modes (most common values) of discrete or nominal data (statistics).
multiply
Returns test (numpy).

© 2026 Better Solutions Limited. All Rights Reserved. © 2026 Better Solutions Limited Top