tuple()

The built-in tuple() function creates a new tuple.

Syntax

tuple_instance(iterable)

The iterable parameter is optional and is an object that can be looped over, such as a list or string. If an iterable is not provided, an empty tuple is created.

Codebyte Example

The following is an example of how the tuple() function is used to create a new tuple from a list:

Code
Output
Loading...

Contributors

Interested in helping build Docs? Read the Contribution Guide or share your thoughts in this feedback form.

Learn Python on Codecademy