inbetween

Function
inbetween(
    start: int | float,
    end: int | float,
    num: int
) -> list[float]

Generate num evenly-spaced values strictly between start and end (endpoints excluded).

Example: inbetween(0, 10, 4)[2.0, 4.0, 6.0, 8.0]