Python/Data type

Python Data type - list

kimble2 2024. 7. 30. 22:08
반응형

In Python, lists are a built-in data type that allows you to store collections of items. Lists are ordered, mutable (i.e., you can change, add, or remove elements), and can hold items of different data types. This makes them highly versatile for a wide range of applications.

 

Characteristics of Lists

  1. Ordered: Lists maintain the order of elements, which means that the elements have a defined sequence and can be accessed by their index.
  2. Mutable: You can modify the list after its creation by adding, removing, or changing elements.
  3. Heterogeneous: A list can contain elements of different data types, including numbers, strings, other lists, objects, etc.
  4. Dynamic: Lists can grow and shrink in size dynamically.

Creating Lists

You can create lists by placing comma-separated values between square brackets.

 

# A list of integers
numbers = [1, 2, 3, 4, 5]

# A list of strings
fruits = ["apple", "banana", "cherry"]

# A mixed list
mixed = [1, "hello", 3.14, True]

# An empty list
empty = []

 

Accessing 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 sublist using the slicing syntax [start:stop:step].

sublist = numbers[1:4]  # [2, 3, 4]
every_second = numbers[::2]  # [1, 3, 5]

 

Modifying Lists

1.Changing Elements: Assign a new value to an element using its index.

fruits[1] = "blueberry"  # fruits is now ["apple", "blueberry", "cherry"]

2.Adding Elements:

  • append(): Adds a single element to the end of the list.
fruits.append("orange")  # ["apple", "blueberry", "cherry", "orange"]
  • extend(): Adds multiple elements from another list or iterable to the end of the list.
fruits.extend(["grape", "pear"])  # ["apple", "blueberry", "cherry", "orange", "grape", "pear"]
  • insert(): Inserts an element at a specified position.
fruits.insert(1, "kiwi")  # ["apple", "kiwi", "blueberry", "cherry", "orange", "grape", "pear"]

 

3.Removing Elements:

  • remove(): Removes the first occurrence of a value.
fruits.remove("blueberry")  # ["apple", "kiwi", "cherry", "orange", "grape", "pear"]
  • pop(): Removes and returns the element at the specified position (default is the last element).
last_fruit = fruits.pop()  # "pear", fruits is now ["apple", "kiwi", "cherry", "orange", "grape"]
first_fruit = fruits.pop(0)  # "apple", fruits is now ["kiwi", "cherry", "orange", "grape"]
  • clear(): Removes all elements from the list.
fruits.clear()  # []

 

 

List Operations

1.Concatenation: Combine two lists using the + operator.

combined = numbers + [6, 7, 8]  # [1, 2, 3, 4, 5, 6, 7, 8]

2.Repetition: Repeat the list elements using the * operator.

repeated = numbers * 2  # [1, 2, 3, 4, 5, 1, 2, 3, 4, 5]

3.Membership: Check if an element is in the list using the in keyword.

has_apple = "apple" in fruits  # True

4.Length: Find the number of elements in the list using len().

length = len(numbers)  # 5

5.Sorting: Sort the list in ascending order using sort(), or return a new sorted list using sorted().

fruits.sort()  # ["apple", "cherry", "grape", "kiwi", "orange"]
sorted_fruits = sorted(fruits)  # ["apple", "cherry", "grape", "kiwi", "orange"]

6.Reversing: Reverse the order of elements in the list.

numbers.reverse()  # [5, 4, 3, 2, 1]

List Comprehensions

List comprehensions provide a concise way to create lists. They can include conditionals and loops.

 

# A list of squares of numbers from 0 to 9
squares = [x**2 for x in range(10)]  # [0, 1, 4, 9, 16, 25, 36, 49, 64, 81]

# A list of even numbers from 0 to 9
evens = [x for x in range(10) if x % 2 == 0]  # [0, 2, 4, 6, 8]

Nested Lists

Lists can contain other lists, allowing the creation of matrices or other complex data structures.

matrix = [
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9]
]

# Accessing elements
element = matrix[1][2]  # 6

 

Python lists are a versatile and powerful data structure, allowing for efficient storage, retrieval, and manipulation of collections of items. They are widely used in Python programming due to their flexibility and ease of use. Whether you're working with simple sequences or complex data structures, lists provide a comprehensive set of tools and functionalities to meet your needs.

반응형

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

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