Complete List

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).
nanReturns floating-point "not a number" (NaN). (math).
nan_to_numReturns test (numpy).
nancumprodReturns test (numpy).
nancumsumReturns test (numpy).
nanmaxReturns test (numpy).
nanminReturns test (numpy).
nanprodReturns test (numpy).
nansumReturns test (numpy).
negativeReturns test (numpy).
nextReturns the next item from an iterator (built-in).
nextafterReturns test (math, numpy).
normaldist(class) Returns test (statistics).
normvariateReturns test (random).
not(operator) not operator
object(class) Returns the base class for all classes (built-in).
octReturns the number converted to a octal string (built-in).
octdigitsReturns the string '01234567' (string).
openOpens a file (built-in).
or(operator) or operator
ordReturns the ordinal value of a character (built-in).
packworking with bytes (struct).
paretovariateReturns test (random).
patternReturns test (re).
permReturns test (math).
piReturns the mathematical constant p (3.14159...). (math).
pivot_tableReturns test (pandas)
positiveReturns test (numpy).
powReturns base to the power of exponent (built-in, numpy).
powerReturns test (numpy).
printPrint objects to a text stream (built-in).
printableReturns the string of ASCII characters which are considered printable (string).
prodReturns test (math, numpy).
property(class) Returns a property attribute (built-in).
pstdevReturns the population standard deviation of data (statistics).
punctuationReturns the string of ASCII characters which are considered punctuation characters (string).
purgeReturns test (re).
pvarianceReturns the population variance of data (statistics).
quantilesReturns the divide data into intervals with equal probability (statistics).
rad2degReturns test (numpy).
radiansReturns the angle x from degrees to radians. (math).
randbytesReturns test (random).
randintReturns test (random).
randomReturns test (random).
randrangeReturns test (random).
rangeReturns a sequence type (built-in).
realReturns test (numpy).
real_if_closeReturns test (numpy).
reciprocalReturns test (numpy).
remainderReturns test (math, numpy).
reprReturns a string containing a printable representation of an object (built-in).
reversedReturns a reverse iterator (built-in).
rintReturns test (numpy).
roundReturns the number rounded to a specific number of decimal places (built-in, numpy).
sampleReturns test (random).
searchReturns searches for a pattern match anywhere in the string (re).
seedReturns test (random).
setReturns a new set object (built-in).
setattrDefines the attribute (built-in).
setstateReturns test (random).
shuffleReturns test (random).
signReturns test (numpy).
signbitReturns test (numpy).
sinReturns the sine of x radians. (math, numpy).
sincReturns test (numpy).
sinhReturns test (math, numpy).
sliceReturns a slice object representing the set of indices (built-in).
sortReturns test (statistics).
sortedReturns a new sorted list (built-in).
spacingReturns test (numpy).
splitReturns test (re).
sqrtReturns the square root of x (math, numpy).
squareReturns test (numpy).
staticmethodConvert a method into a static method (built-in).
stdevReturns the sample standard deviation of data (statistics).
strReturns the object converted to a string (built-in).
subReturns substitues/replaces matches with a specified string (re).
subnReturns test (re).
subtractReturns test (numpy).
sumReturns the total of all the items of an iterable (built-in, numpy).
sumprodReturns test (math).
superReturns a proxy object that delegates method calls to a parent (built-in).
tanReturns the tangent of x radians (math, numpy).
tanhReturns test (math, numpy).
tauReturns test (math).
time(class) Returns the class
trapezoidReturns test (numpy).
triangularReturns test (random).
true_divideReturns test (numpy).
truncReturns x truncated to an integer (math, numpy).
tupleCreate a tuple (built-in).
typeReturns the type of an object (built-in).
typecodesReturns the type code characters on this build (array)
ulpReturns test (math).
uniformReturns test (random).
unpackReturns test (struct).
unwrapReturns test (numpy).
varianceReturns the sample variance of data (statistics).
varsReturns an attribute for a module class (built-in).
vonmisesvariateReturns test (random).
weibullvariateReturns test (random).
whitespaceReturns the string ' \t\n\r\u000b\f' (string).
zipIterate over several iterables in parallel (built-in).
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).
nan
Returns floating-point "not a number" (NaN). (math).
nan_to_num
Returns test (numpy).
nancumprod
Returns test (numpy).
nancumsum
Returns test (numpy).
nanmax
Returns test (numpy).
nanmin
Returns test (numpy).
nanprod
Returns test (numpy).
nansum
Returns test (numpy).
negative
Returns test (numpy).
next
Returns the next item from an iterator (built-in).
nextafter
Returns test (math, numpy).
normaldist
(class) Returns test (statistics).
normvariate
Returns test (random).
not
(operator) not operator
object
(class) Returns the base class for all classes (built-in).
oct
Returns the number converted to a octal string (built-in).
octdigits
Returns the string '01234567' (string).
open
Opens a file (built-in).
or
(operator) or operator
ord
Returns the ordinal value of a character (built-in).
pack
working with bytes (struct).
paretovariate
Returns test (random).
pattern
Returns test (re).
perm
Returns test (math).
pi
Returns the mathematical constant p (3.14159...). (math).
pivot_table
Returns test (pandas)
positive
Returns test (numpy).
pow
Returns base to the power of exponent (built-in, numpy).
power
Returns test (numpy).
print
Print objects to a text stream (built-in).
printable
Returns the string of ASCII characters which are considered printable (string).
prod
Returns test (math, numpy).
property
(class) Returns a property attribute (built-in).
pstdev
Returns the population standard deviation of data (statistics).
punctuation
Returns the string of ASCII characters which are considered punctuation characters (string).
purge
Returns test (re).
pvariance
Returns the population variance of data (statistics).
quantiles
Returns the divide data into intervals with equal probability (statistics).
rad2deg
Returns test (numpy).
radians
Returns the angle x from degrees to radians. (math).
randbytes
Returns test (random).
randint
Returns test (random).
random
Returns test (random).
randrange
Returns test (random).
range
Returns a sequence type (built-in).
real
Returns test (numpy).
real_if_close
Returns test (numpy).
reciprocal
Returns test (numpy).
remainder
Returns test (math, numpy).
repr
Returns a string containing a printable representation of an object (built-in).
reversed
Returns a reverse iterator (built-in).
rint
Returns test (numpy).
round
Returns the number rounded to a specific number of decimal places (built-in, numpy).
sample
Returns test (random).
search
Returns searches for a pattern match anywhere in the string (re).
seed
Returns test (random).
set
Returns a new set object (built-in).
setattr
Defines the attribute (built-in).
setstate
Returns test (random).
shuffle
Returns test (random).
sign
Returns test (numpy).
signbit
Returns test (numpy).
sin
Returns the sine of x radians. (math, numpy).
sinc
Returns test (numpy).
sinh
Returns test (math, numpy).
slice
Returns a slice object representing the set of indices (built-in).
sort
Returns test (statistics).
sorted
Returns a new sorted list (built-in).
spacing
Returns test (numpy).
split
Returns test (re).
sqrt
Returns the square root of x (math, numpy).
square
Returns test (numpy).
staticmethod
Convert a method into a static method (built-in).
stdev
Returns the sample standard deviation of data (statistics).
str
Returns the object converted to a string (built-in).
sub
Returns substitues/replaces matches with a specified string (re).
subn
Returns test (re).
subtract
Returns test (numpy).
sum
Returns the total of all the items of an iterable (built-in, numpy).
sumprod
Returns test (math).
super
Returns a proxy object that delegates method calls to a parent (built-in).
tan
Returns the tangent of x radians (math, numpy).
tanh
Returns test (math, numpy).
tau
Returns test (math).
time
(class) Returns the class
trapezoid
Returns test (numpy).
triangular
Returns test (random).
true_divide
Returns test (numpy).
trunc
Returns x truncated to an integer (math, numpy).
tuple
Create a tuple (built-in).
type
Returns the type of an object (built-in).
typecodes
Returns the type code characters on this build (array)
ulp
Returns test (math).
uniform
Returns test (random).
unpack
Returns test (struct).
unwrap
Returns test (numpy).
variance
Returns the sample variance of data (statistics).
vars
Returns an attribute for a module class (built-in).
vonmisesvariate
Returns test (random).
weibullvariate
Returns test (random).
whitespace
Returns the string ' \t\n\r\u000b\f' (string).
zip
Iterate over several iterables in parallel (built-in).

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