Jc-alt logo
jonathancamberos
Python
1 min read
#data structures and algorithms

Intro

Typing (to-do)

Arrays (to-do)

Slicing

    sequence[start:stop:step]

    start: The index where the slice begins (inclusive).

    stop: The index where the slice ends (exclusive).

    step (optional): The interval between elements in the slice.