Lists are a fundamental data structure in Python that are mutable, ordered, and can hold a collection of items of various data types. The process of creating a list is intuitive and flexible. You can start with an empty list and append items to it, or you can create a list with initial values. Lists are delimited by square brackets
[]
, and the elements inside are separated by commas.
Building a list from a string using the
split()
function merges the concepts of string manipulation and list creation:
text = 'apple orange banana'fruits = text.split()
In this example, 'fruits' becomes
['apple', 'orange', 'banana']
. This concept is essential for collecting and organizing data within programs, making tasks like reading a sentence and identifying individual words or storing structured data much more manageable.