Demo

Highlights

groupfloats(
  iterable: Iterable[float],
  step: float = 1,
  ) -> Iterable[Tuple[float, ...]]

Returns an iterator over the discrete ranges of values in iterable.

See more in domdf_python_tools.iterative.

Plural(singular: str, plural: str)

Represents a word as its singular and plural.

See more in domdf_python_tools.words.

head(
  obj: Union[Tuple, List, DataFrame, Series, String, HasHead],
  n: int = 10,
  ) -> Optional[str]

Returns the head of the given object.

See more in domdf_python_tools.utils.

StringList(
  iterable: Iterable[String] = (),
  convert_indents: bool = False,
  )

A list of strings that represent lines in a multiline string.

See more in domdf_python_tools.stringlist.

See another example in the documentation for domdf_python_tools, which uses the ReadTheDocs Sphinx Theme.