Alphabetical A - M
| 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). |
| 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