Skip to main content

ints_python

No overview available.

def ints_python(
n: int
) - > list

Generates a sequence of integers from 0 up to a specified limit.

Parameters

NameTypeDescription
nintThe upper bound (exclusive) for the sequence of integers to be generated.

Returns

TypeDescription
listA list containing the sequence of integers from 0 to n-1.