Python - Inbuilt Datastructures
Lists
In Python, a list is a versatile, built-in data type that holds an ordered collection of items, which can be of different data types. Lists are mutable, meaning you can change their contents after creation.
Creating Lists:
Lists are created using square brackets
[]
You can also use the
list()
constructor to create a listLists can store various data types, including strings, integers, and even other lists
Basic List Operations:
Accessing Elements: List items are indexed, starting at 0. You can access elements using square brackets and their index. Negative indexing accesses elements from the end of the list
Slicing: You can extract a portion of a list by specifying a range of indexes
Length: Use the
len()
function to determine the number of items in a list
Modifying Lists:
Adding Items:
append()
: Adds an element to the end of the listinsert()
: Inserts an element at a specific indexextend()
: Adds elements from another list to the end of the current list
Removing Items:
remove()
: Removes the first occurrence of a specified value
Other Useful List Operations:
index()
: Returns the index of the first occurrence of a value.sort()
: Sorts the list in ascending order.in
: Tests if a value is in the list.
Lists are a fundamental part of Python, offering a flexible way to work with ordered data
Tuple
In Python, a tuple is an ordered collection of items, similar to a list. However, tuples are immutable, meaning their contents cannot be changed after creation. This immutability makes tuples suitable for storing fixed collections of data
Creating Tuples:
Tuples are created by placing a sequence of values separated by commas within round brackets
()
Tuples can contain heterogeneous data types, including numbers, strings, and other tuples
To create a tuple with a single element, include a comma after the item
An empty tuple is created with empty parentheses
Basic Tuple Operations:
Accessing Elements: Tuple items are accessed by their index, starting from 0
Slicing: You can extract a portion of a tuple by specifying a range of indices.
Length: The
len()
function returns the number of elements in a tupleConcatenation: Tuples can be concatenated using the
+
operator
Tuple Methods:
count()
: Returns the number of times a specified value occurs in a tupleindex()
: Returns the index of the first occurrence of a specified element in a tuple
Other Tuple Operations and Characteristics:
Immutability: Once a tuple is created, its contents cannot be modified
Tuple Packing and Unpacking: Tuple packing involves placing multiple values into a tuple, while unpacking involves extracting those values back into individual variables
Tuples as Dictionary Keys: Tuples can be used as keys in dictionaries because they are immutable
Iteration: You can iterate through a tuple using a
for
looptuple()
function: Used to convert a list, set, or any iterable object into a tuplemax()
: The max() function is used to return the maximum value in a tuplemin()
: The min() function is used to return the minimum value in a tuplesum()
: The sum() function is used to return the sum of all elements in a tuple
Tuples are useful when you want to ensure that data remains constant throughout the program
Sets
In Python, a set is a built-in data structure used to store an unordered collection of unique items. Sets are similar to mathematical sets and support operations like union, intersection, and difference
Defining a Set:
A set is created using curly braces
{}
or the built-inset()
functionSets are unordered, so the items do not have a defined order
Sets are unindexed, so you cannot access items using an index
Sets only store unique elements; duplicate values are not allowed
Set elements must be of an immutable type, such as strings, numbers, or tuples
Creating Sets:
Using curly braces:
Using the
set()
constructor:
Basic Set Operations:
Adding Items: Although sets are immutable, items can be added.
add()
: Adds a single element to the set.update()
: Adds multiple elements from an iterable (like a list or another set) to the set.
Removing Items: Although sets are immutable, items can be removed.
remove()
: Removes a specified element from the set. Raises an error if the element is not found.discard()
: Removes a specified element from the set if it is present. Does not raise an error if the element is not found.pop()
: Removes and returns an arbitrary element from the set. Raises an error if the set is empty.clear()
: Removes all elements from the set.
Set Operations:
Union: Returns a new set containing all elements from both sets.
Intersection: Returns a new set containing only the elements common to both sets
Subset and Superset:
issubset()
: Checks if one set is a subset of another.issuperset()
: Checks if one set is a superset of another.
Other operations:
len()
: to find the length of a set.in
: Tests if a value is in the set.
Sets are commonly used for tasks such as removing duplicates from a collection, membership testing, and performing mathematical set operations.
Dictionaries
In Python, a dictionary is a versatile and mutable data structure that stores collections of key-value pairs. Dictionaries are used for efficient data retrieval, where each unique key maps to an associated value.
Key Characteristics:
Key-Value Pairs: Each item in a dictionary is a mapping between a key and a value
Keys Must Be Unique: Within a dictionary, each key must be distinct
Mutable: Dictionaries can be modified after creation, allowing you to add, update, and delete key-value pairs
Ordered: Dictionaries preserve the order in which items are inserted (starting with Python 3.7)
Keys Must Be Hashable: Keys should be of an immutable type (e.g., numbers, strings, tuples)
Creating Dictionaries:
Using Dictionary Literals: Enclose key-value pairs within curly braces
{}
Using the
dict()
Constructor: Create dictionaries from iterables of key-value pairs, other mappings, or keyword arguments
Basic Dictionary Operations:
Adding/Updating Items: Add a new key-value pair or update an existing value by assigning a value to a key.
Deleting Items: Remove key-value pairs from a dictionary.
pop()
: Removes the item with the specified key.clear()
: Remove all the items from the dictionary.
Dictionary Methods:
keys()
: Returns a view of all the keys in the dictionary.values()
: Returns a view of all the values in the dictionary.items()
: Returns a view of all key-value pairs as tuples.get(key, default)
: Returns the value for a key. If the key does not exist, it returns the default value (orNone
if no default is specified).update(other_dict)
: Merges the key-value pairs fromother_dict
into the dictionary. If a key exists in both dictionaries, the value fromother_dict
overwrites the value in the original dictionary.copy()
: Returns a shallow copy of the dictionary.
Dictionary Comprehension:
Dictionaries are widely used in Python for tasks such as storing configuration settings, representing data structures (e.g., JSON), and implementing caching mechanisms. They provide efficient ways to organize and access data using key-value relationships.
Last updated