If we had to create a variable for every piece of new data, our code would get very long and complicated.
Rather than creating a variable for each new piece of data, we can collect related data in a list using [ and ].
>>> todo = ["read","work","code"]
>>> todo
['read', 'work', 'code']