memacc 0.1.11

Memory access functions.
Documentation
1
2
3
4
5
6
from more_itertools import sliced


def add_separator(value: str) -> str:
    assert isinstance(value, str)
    return "_".join(list(sliced(value, 4, strict=True)))