Python Lists - W3Schools
www.w3schools.com › python › python_listsLists are one of 4 built-in data types in Python used to store collections of data, the other 3 are Tuple, Set, and Dictionary, all with different qualities and usage. Lists are created using square brackets: Example. Create a List: thislist = ["apple", "banana", "cherry"] print(thislist) Try it Yourself ».