Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Редагування Списків | Список
Структури Даних в Python
course content

Зміст курсу

Структури Даних в Python

Структури Даних в Python

1. Список
2. Словник
3. Кортеж
4. Множина

book
Редагування Списків

Списки - це гнучка структура даних у Python, що означає, що ви можете модифікувати їх, додаючи, видаляючи або змінюючи елементи. Крім того, ви можете замінити один елемент на кілька інших.

1234
numbers = [2, 14, 16, 32, 24, 65, 75] # Заміна четвертого елементу numbers[3] = 5 print(numbers)
copy

In this example:

  1. We replaced the city "New York" at index 3 with "Rome";
  2. 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:

123456
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']
copy

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.

Завдання
test

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.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 5
toggle bottom row

book
Редагування Списків

Списки - це гнучка структура даних у Python, що означає, що ви можете модифікувати їх, додаючи, видаляючи або змінюючи елементи. Крім того, ви можете замінити один елемент на кілька інших.

1234
numbers = [2, 14, 16, 32, 24, 65, 75] # Заміна четвертого елементу numbers[3] = 5 print(numbers)
copy

In this example:

  1. We replaced the city "New York" at index 3 with "Rome";
  2. 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:

123456
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']
copy

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.

Завдання
test

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.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 1. Розділ 5
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt