Complete List
| 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 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). |
| 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