Python/Data type

Python Data type - tuple

kimble2 2024. 8. 3. 08:51
반응형

tuples in Python are a built-in data type used to store collections of items. They are similar to lists in that they can hold multiple items, but they have a few key differences, particularly in their immutability. Here's a detailed explanation of tuples and how to use them:

 

Characteristics of Tuples

  1. Ordered: Like lists, tuples maintain the order of their elements. This means that the position of each element is fixed and elements can be accessed using their index.
  2. Immutable: Unlike lists, tuples are immutable. Once a tuple is created, its contents cannot be changed, added to, or removed from. This makes tuples a useful data type for representing fixed collections of items.
  3. Heterogeneous: Tuples can contain elements of different data types, such as integers, floats, strings, and even other tuples.
  4. Hashable: Because tuples are immutable, they can be used as keys in dictionaries and can be included in sets, unlike lists.

Creating Tuples

Tuples are created by placing comma-separated values inside parentheses (()).

 

# A tuple of integers
numbers = (1, 2, 3)

# A tuple of strings
fruits = ("apple", "banana", "cherry")

# A mixed tuple
mixed = (1, "hello", 3.14)

# A nested tuple
nested = (1, (2, 3), (4, 5))

# A single element tuple (note the comma)
single_element = (42,)

# An empty tuple
empty = ()

 

 

Parentheses are optional if there is no ambiguity, especially when the tuple is part of a larger expression.

 

# Without parentheses
numbers = 1, 2, 3

 

Accessing Tuple Elements

1.Indexing: Access elements by their index, starting from 0.

first_fruit = fruits[0]  # "apple"
last_fruit = fruits[-1]  # "cherry"

 

2.Slicing: Extract a sub-tuple using the slicing syntax [start:stop:step].

sub_tuple = numbers[1:3]  # (2, 3)

 

Tuple Operations

1.Concatenation: Combine two or more tuples using the + operator.

combined = numbers + (4, 5, 6)  # (1, 2, 3, 4, 5, 6)

Repetition: Repeat the elements in a tuple using the * operator.

repeated = numbers * 2  # (1, 2, 3, 1, 2, 3)

Membership: Check if an element exists in a tuple using the in keyword.

has_apple = "apple" in fruits  # True

Length: Find the number of elements in a tuple using len().

length = len(numbers)  # 3

 

Unpacking Tuples

Tuples can be "unpacked" into individual variables. The number of variables must match the number of elements in the tuple.

# Unpacking
a, b, c = numbers  # a=1, b=2, c=3

# Unpacking with wildcard (*)
x, y, *rest = 1, 2, 3, 4, 5  # x=1, y=2, rest=[3, 4, 5]

# Unpacking with wildcard in the middle
x, *middle, y = 1, 2, 3, 4, 5  # x=1, middle=[2, 3, 4], y=5

 

Tuple Methods and Functions

 - count(): Returns the number of times a specified value appears in the tuple.

count_of_2 = numbers.count(2)  # 1

 

 - index(): Returns the index of the first occurrence of a specified value.

index_of_banana = fruits.index("banana")  # 1

 

 

Immutability and Benefits

Because tuples are immutable, they are hashable and can be used as keys in dictionaries and elements in sets. This immutability also makes tuples a safer choice for representing data that should not change throughout the program.

When to Use Tuples

  1. Fixed Collections: When the data is fixed and should not change, such as the days of the week, or coordinates.
  2. Dictionaries: When using composite keys in dictionaries.
  3. Return Multiple Values: Functions can return multiple values using tuples.
  4. Efficiency: Tuples are generally more memory-efficient than lists due to their immutability.

Example Use Cases

 

# Returning multiple values from a function
def divide(x, y):
    quotient = x // y
    remainder = x % y
    return quotient, remainder

q, r = divide(10, 3)  # q=3, r=1

# Using tuples as dictionary keys
location_coordinates = {
    (37.7749, -122.4194): "San Francisco",
    (40.7128, -74.0060): "New York"
}
city = location_coordinates[(37.7749, -122.4194)]  # "San Francisco"

 

 

 

 

Tuples are a versatile and efficient data type in Python. Their immutability makes them ideal for representing constant data, and their capability to store heterogeneous items provides flexibility. Whether you're using them for data integrity, efficiency, or as function return values, tuples are an essential tool in Python programming.

반응형

'Python > Data type' 카테고리의 다른 글

Python Data type - set  (0) 2024.08.03
Python Data type - dictionary  (0) 2024.08.03
Python Data type - list  (0) 2024.07.30
Python data type - String  (0) 2024.07.30
Python data types - number  (0) 2024.07.30