Return a sequence of numbers.
start (int) – Start.
stop (int, unset) – Stop.
step (int, unset) – Step.
Iterator.
AsyncIterator[int]
Examples
>>> [num async for num in arange(23)] [0, 1, 2, 3, 4, ..., 19, 20, 21, 22]
See also
range()
Because asyncio.gather() is not enough!
API Reference