Search⌘ K
AI Features

Tuples

Explore Python tuples by learning how to create them using parentheses or the tuple function. Understand their immutability, see how they support slicing but not sorting, and discover casting between tuples and lists.

We'll cover the following...

A tuple is similar to a list, but you create them with parentheses instead of square brackets. You can also use the tuple built-in. The main difference is that a tuple is immutable while ...