Tuple

A tuple is a finite ordered list of elements. Tuples are written by listing comma-separated elements within parentheses. Similar to lists, they are sequences. The main difference between tuples and lists is that tuples cannot be changed once assigned, whereas lists can. Tuples are occasionally written with square or angle brackets.

Most typed functional programming languages such as Lisp, Python, and Linda use tuples as product types. Uses for the tuple as a data type include passing a string of parameters from one program to another and representing a set of value attributes in a relational database. In some languages, tuples are embedded within other tuples within parentheses or brackets.

Some programming languages offer an alternative to tuples known as record types, which feature unordered elements accessed by label. Languages such as Haskell combine tuple product types and unordered record types into a single construct.

Python tuple

In Python, lists and tuples are two of the most commonly used data structures. In addition to the aforementioned difference of being changeable, other differences include:

  • Iterating over elements of a tuple is faster compared to iterating over a list.
  • In Python, elements of a tuple are enclosed in parentheses whereas elements of list are enclosed in square brackets.
  • If data needs to remain unchanged over time, a tuple is the preferred data type. If data may need to be changed in the future, a list should be used.

Python tuple example

A tuple can have any number of items that are of different types such as integer, float, and string. Here’s an example of a tuple in Python:

Program to run in Python:

# Different types of tuples

# Empty tuple
my_tuple = ()
print(my_tuple)

# Tuple having integers
my_tuple = (1, 2, 3)
print(my_tuple)

# tuple with mixed datatypes
my_tuple = (1, "Hello", 3.4)
print(my_tuple)

# nested tuple
my_tuple = ("mouse", [8, 4, 6], (1, 2, 3))
print(my_tuple)

Output:

()
(1, 2, 3)
(1, 'Hello', 3.4)
('mouse', [8, 4, 6], (1, 2, 3))

Webopedia Staff
Webopedia Staff
Since 1995, more than 100 tech experts and researchers have kept Webopedia’s definitions, articles, and study guides up to date. For more information on current editorial staff, please visit our About page.
Get the Free Newsletter
Subscribe to Daily Tech Insider for top news, trends & analysis
This email address is invalid.
Get the Free Newsletter
Subscribe to Daily Tech Insider for top news, trends & analysis
This email address is invalid.

Related Articles

Virtual Private Network (VPN)

A virtual private network (VPN) encrypts a device's Internet access through a secure server. It is most frequently used for remote employees accessing a...

Gantt Chart

A Gantt chart is a type of bar chart that illustrates a project schedule and shows the dependency between tasks and the current schedule...

Input Sanitization

Input sanitization is a cybersecurity measure of checking, cleaning, and filtering data inputs from users, APIs, and web services of any unwanted characters and...

IT Asset Management Software

IT asset management software (ITAM software) is an application for organizing, recording, and tracking all of an organization s hardware and software assets throughout...

ScalaHosting

ScalaHosting is a leading managed hosting provider that offers secure, scalable, and affordable...

HRIS

Human resources information system (HRIS) solutions help businesses manage multiple facets of their...

Best Managed Service Providers...

In today's business world, managed services are more critical than ever. They can...