ints_python
No overview available.
def ints_python(
n: int
) - > list
Generates a sequence of integers from 0 up to a specified limit.
Parameters
| Name | Type | Description |
|---|---|---|
| n | int | The upper bound (exclusive) for the sequence of integers to be generated. |
Returns
| Type | Description |
|---|---|
list | A list containing the sequence of integers from 0 to n-1. |