Introduction to Python Resources

Begin your free Python journey now,
at your own pace

check

Concepts: Collections

check

Grouping multiple values together with collections.


What are Collections?

Up until now, we've been working with data types that hold a single value (numbers, strings, & booleans). "Collections" are data types that can hold many values. The values in a collection can be of multiple data types and can even include other collections. Collections are often used when there are multiple related values.