1 min read
#data structures and algorithmsIntro
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.