Python 3.4 - Collection Data Types
You can organize and collect data and store it in various forms (lists, tuples). You can work with these data collections for various purposes and in various ways. You can append, insert, and do other actions with these data collections. You can gather information from a list.
>>> x = ["zebra", 49, -879, "aardvark", 200]
>>> x.append("more")
>>> x
['zebra', 49, -879, 'aardvark', 200, 'more']
Comments