Зміст курсу
Структури Даних в Python
Структури Даних в Python
Вилучення Елементів
Уявіть, у вас є такий список:
tasks = ['email Ann', 'call Max', 'meet with classmates'] print(tasks)
Ви також можете видалити елемент зі списку, вказавши його значення. Ось як це робити.
tasks = ['email Ann', 'call Max', 'meet with classmates'] tasks.remove('call Max') print(tasks)
Тепер у списку лише два пункти замість трьох:
-
tasks[0]
зі значенням'email Ann'
; -
tasks[1]
зі значенням'meet with classmates'
.
travel_wishlist = ["Paris", "Oslo", "Rome", "Sydney"] if "Kyoto" in travel_wishlist: travel_wishlist.remove("Kyoto") print(travel_wishlist)
Note
With the
remove()
method, you can only take out one item at a time.
Swipe to show code editor
You changed your mind about one of the cities. Use the remove()
method to delete Oslo
from the travel_wishlist
.
Дякуємо за ваш відгук!
Вилучення Елементів
Уявіть, у вас є такий список:
tasks = ['email Ann', 'call Max', 'meet with classmates'] print(tasks)
Ви також можете видалити елемент зі списку, вказавши його значення. Ось як це робити.
tasks = ['email Ann', 'call Max', 'meet with classmates'] tasks.remove('call Max') print(tasks)
Тепер у списку лише два пункти замість трьох:
-
tasks[0]
зі значенням'email Ann'
; -
tasks[1]
зі значенням'meet with classmates'
.
travel_wishlist = ["Paris", "Oslo", "Rome", "Sydney"] if "Kyoto" in travel_wishlist: travel_wishlist.remove("Kyoto") print(travel_wishlist)
Note
With the
remove()
method, you can only take out one item at a time.
Swipe to show code editor
You changed your mind about one of the cities. Use the remove()
method to delete Oslo
from the travel_wishlist
.
Дякуємо за ваш відгук!
Вилучення Елементів
Уявіть, у вас є такий список:
tasks = ['email Ann', 'call Max', 'meet with classmates'] print(tasks)
Ви також можете видалити елемент зі списку, вказавши його значення. Ось як це робити.
tasks = ['email Ann', 'call Max', 'meet with classmates'] tasks.remove('call Max') print(tasks)
Тепер у списку лише два пункти замість трьох:
-
tasks[0]
зі значенням'email Ann'
; -
tasks[1]
зі значенням'meet with classmates'
.
travel_wishlist = ["Paris", "Oslo", "Rome", "Sydney"] if "Kyoto" in travel_wishlist: travel_wishlist.remove("Kyoto") print(travel_wishlist)
Note
With the
remove()
method, you can only take out one item at a time.
Swipe to show code editor
You changed your mind about one of the cities. Use the remove()
method to delete Oslo
from the travel_wishlist
.
Дякуємо за ваш відгук!
Уявіть, у вас є такий список:
tasks = ['email Ann', 'call Max', 'meet with classmates'] print(tasks)
Ви також можете видалити елемент зі списку, вказавши його значення. Ось як це робити.
tasks = ['email Ann', 'call Max', 'meet with classmates'] tasks.remove('call Max') print(tasks)
Тепер у списку лише два пункти замість трьох:
-
tasks[0]
зі значенням'email Ann'
; -
tasks[1]
зі значенням'meet with classmates'
.
travel_wishlist = ["Paris", "Oslo", "Rome", "Sydney"] if "Kyoto" in travel_wishlist: travel_wishlist.remove("Kyoto") print(travel_wishlist)
Note
With the
remove()
method, you can only take out one item at a time.
Swipe to show code editor
You changed your mind about one of the cities. Use the remove()
method to delete Oslo
from the travel_wishlist
.