OperatorsEnum#

class OperatorsEnum#

Operators for numeric and categorical filters.

__init__(*args, **kwds)#
__new__(value)#

Attributes

Methods

OperatorsEnum.capitalize(/)

Return a capitalized version of the string.

OperatorsEnum.casefold(/)

Return a version of the string suitable for caseless comparisons.

OperatorsEnum.center(width[, fillchar])

Return a centered string of length width.

OperatorsEnum.count(sub[, start[, end]])

Return the number of non-overlapping occurrences of substring sub in string S[start:end].

OperatorsEnum.encode(/[, encoding, errors])

Encode the string using the codec registered for encoding.

OperatorsEnum.endswith(suffix[, start[, end]])

Return True if S ends with the specified suffix, False otherwise.

OperatorsEnum.expandtabs(/[, tabsize])

Return a copy where all tab characters are expanded using spaces.

OperatorsEnum.find(sub[, start[, end]])

Return the lowest index in S where substring sub is found, such that sub is contained within S[start:end].

OperatorsEnum.format(*args, **kwargs)

Return a formatted version of S, using substitutions from args and kwargs.

OperatorsEnum.format_map(mapping)

Return a formatted version of S, using substitutions from mapping.

OperatorsEnum.index(sub[, start[, end]])

Return the lowest index in S where substring sub is found, such that sub is contained within S[start:end].

OperatorsEnum.isalnum(/)

Return True if the string is an alpha-numeric string, False otherwise.

OperatorsEnum.isalpha(/)

Return True if the string is an alphabetic string, False otherwise.

OperatorsEnum.isascii(/)

Return True if all characters in the string are ASCII, False otherwise.

OperatorsEnum.isdecimal(/)

Return True if the string is a decimal string, False otherwise.

OperatorsEnum.isdigit(/)

Return True if the string is a digit string, False otherwise.

OperatorsEnum.isidentifier(/)

Return True if the string is a valid Python identifier, False otherwise.

OperatorsEnum.islower(/)

Return True if the string is a lowercase string, False otherwise.

OperatorsEnum.isnumeric(/)

Return True if the string is a numeric string, False otherwise.

OperatorsEnum.isprintable(/)

Return True if the string is printable, False otherwise.

OperatorsEnum.isspace(/)

Return True if the string is a whitespace string, False otherwise.

OperatorsEnum.istitle(/)

Return True if the string is a title-cased string, False otherwise.

OperatorsEnum.isupper(/)

Return True if the string is an uppercase string, False otherwise.

OperatorsEnum.join(iterable, /)

Concatenate any number of strings.

OperatorsEnum.ljust(width[, fillchar])

Return a left-justified string of length width.

OperatorsEnum.lower(/)

Return a copy of the string converted to lowercase.

OperatorsEnum.lstrip([chars])

Return a copy of the string with leading whitespace removed.

OperatorsEnum.maketrans(x[, y, z])

Return a translation table usable for str.translate().

OperatorsEnum.partition(sep, /)

Partition the string into three parts using the given separator.

OperatorsEnum.removeprefix(prefix, /)

Return a str with the given prefix string removed if present.

OperatorsEnum.removesuffix(suffix, /)

Return a str with the given suffix string removed if present.

OperatorsEnum.replace(old, new[, count])

Return a copy with all occurrences of substring old replaced by new.

OperatorsEnum.rfind(sub[, start[, end]])

Return the highest index in S where substring sub is found, such that sub is contained within S[start:end].

OperatorsEnum.rindex(sub[, start[, end]])

Return the highest index in S where substring sub is found, such that sub is contained within S[start:end].

OperatorsEnum.rjust(width[, fillchar])

Return a right-justified string of length width.

OperatorsEnum.rpartition(sep, /)

Partition the string into three parts using the given separator.

OperatorsEnum.rsplit(/[, sep, maxsplit])

Return a list of the substrings in the string, using sep as the separator string.

OperatorsEnum.rstrip([chars])

Return a copy of the string with trailing whitespace removed.

OperatorsEnum.split(/[, sep, maxsplit])

Return a list of the substrings in the string, using sep as the separator string.

OperatorsEnum.splitlines(/[, keepends])

Return a list of the lines in the string, breaking at line boundaries.

OperatorsEnum.startswith(prefix[, start[, end]])

Return True if S starts with the specified prefix, False otherwise.

OperatorsEnum.strip([chars])

Return a copy of the string with leading and trailing whitespace removed.

OperatorsEnum.swapcase(/)

Convert uppercase characters to lowercase and lowercase characters to uppercase.

OperatorsEnum.title(/)

Return a version of the string where each word is titlecased.

OperatorsEnum.translate(table, /)

Replace each character in the string using the given translation table.

OperatorsEnum.upper(/)

Return a copy of the string converted to uppercase.

OperatorsEnum.zfill(width, /)

Pad a numeric string with zeros on the left, to fill a field of the given width.