what is Python List
Definition
One of the data structure in python.
Almost same as array in other languages.
Object.
index structure
How to use
a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
a[0:8:3] # [0, 3, 6]
a[:8:] # [0, 1, 2, 3, 4, 5, 6, 7]
a[7::] # [7, 8, 9]
a[::-1] # ...
eunhanlee.hashnode.dev3 min read