What’s A Python List Exactly? | Straightforward Python

Developers Group
3 min readApr 29, 2021

Python has a great built-in list type named “list”. List literals are written within square brackets [ ]. Lists work similarly to strings — use the len() function and square brackets [ ] to access data, with the first element at index 0. (See the official python.org list docs.)

They are used to store an ordered collection of items, which might be of different types but…

--

--

Developers Group

A Developer is responsible for coding, designing, deploying, and debugging development projects, typically on the server-side (or back-end).