Зміст курсу
Структури Даних в Python
Структури Даних в Python
Редагування Списків
Списки - це гнучка структура даних у Python, що означає, що ви можете модифікувати їх, додаючи, видаляючи або змінюючи елементи. Крім того, ви можете замінити один елемент на кілька інших.
numbers = [2, 14, 16, 32, 24, 65, 75] # Заміна четвертого елементу numbers[3] = 5 print(numbers)
In this example:
- We replaced the city "New York" at index 3 with "Rome";
- Using negative indexing, we replaced the last two cities ("Rome" and "Sydney") with "Dubai" and "Cape Town".
You can also make multiple changes in one step:
cities = ["Paris", "Tokyo", "New York", "Berlin", "Sydney"] # Replacing multiple cities in the middle cities[1:3] = ["Seoul", "Bangkok", "Mumbai"] print(cities) # Output: ['Paris', 'Seoul', 'Bangkok', 'Mumbai', 'Berlin', 'Sydney']
Here, we replaced "Tokyo" and "New York" with three cities: "Seoul", "Bangkok", and "Mumbai". This demonstrates how flexible list mutability can be for managing your data.
Swipe to show code editor
You're working with the list [2, 4, 8, 64, 1024]
. Your task is to update the last item to 5
and the first item to 0
.
Дякуємо за ваш відгук!
Редагування Списків
Списки - це гнучка структура даних у Python, що означає, що ви можете модифікувати їх, додаючи, видаляючи або змінюючи елементи. Крім того, ви можете замінити один елемент на кілька інших.
numbers = [2, 14, 16, 32, 24, 65, 75] # Заміна четвертого елементу numbers[3] = 5 print(numbers)
In this example:
- We replaced the city "New York" at index 3 with "Rome";
- Using negative indexing, we replaced the last two cities ("Rome" and "Sydney") with "Dubai" and "Cape Town".
You can also make multiple changes in one step:
cities = ["Paris", "Tokyo", "New York", "Berlin", "Sydney"] # Replacing multiple cities in the middle cities[1:3] = ["Seoul", "Bangkok", "Mumbai"] print(cities) # Output: ['Paris', 'Seoul', 'Bangkok', 'Mumbai', 'Berlin', 'Sydney']
Here, we replaced "Tokyo" and "New York" with three cities: "Seoul", "Bangkok", and "Mumbai". This demonstrates how flexible list mutability can be for managing your data.
Swipe to show code editor
You're working with the list [2, 4, 8, 64, 1024]
. Your task is to update the last item to 5
and the first item to 0
.
Дякуємо за ваш відгук!