# Numbers ## One-stop shop for all things numbers The `numbers` module is used to manipulate numbers, typically by rounding and simplifying them, in utilities-industry-standard ways. ## Usage ```python from xocto.numbers import quantise >>> quantise(256, 5) 255 ``` See [xocto.numbers](https://github.com/octoenergy/xocto/blob/master/xocto/numbers.py) for more details, including examples and in depth technical details. ## API Reference ```{eval-rst} .. module:: xocto.types .. automodule:: xocto.numbers :members: :undoc-members: :show-inheritance: ```