Зміст курсу
Структури Даних в Python
Структури Даних в Python
Видалення Елементів
Уявіть, у вас є список завдань:
tasks = ['email Tom', 'call Max', 'meet with sister'] print(tasks)
Цей список містить 3 пункти.
You can remove any item from the list by using its index number.
Swipe to show code editor
Here's your list:
groups = ["Paris", "Oslo", "Kyoto", "Sydney", "Rome"]
Remove the first and third cities from your travel_wishlist
using the del
keyword two times.
Дякуємо за ваш відгук!
Видалення Елементів
Уявіть, у вас є список завдань:
tasks = ['email Tom', 'call Max', 'meet with sister'] print(tasks)
Цей список містить 3 пункти.
You can remove any item from the list by using its index number.
Swipe to show code editor
Here's your list:
groups = ["Paris", "Oslo", "Kyoto", "Sydney", "Rome"]
Remove the first and third cities from your travel_wishlist
using the del
keyword two times.
Дякуємо за ваш відгук!
Видалення Елементів
Уявіть, у вас є список завдань:
tasks = ['email Tom', 'call Max', 'meet with sister'] print(tasks)
Цей список містить 3 пункти.
You can remove any item from the list by using its index number.
Swipe to show code editor
Here's your list:
groups = ["Paris", "Oslo", "Kyoto", "Sydney", "Rome"]
Remove the first and third cities from your travel_wishlist
using the del
keyword two times.
Дякуємо за ваш відгук!
Уявіть, у вас є список завдань:
tasks = ['email Tom', 'call Max', 'meet with sister'] print(tasks)
Цей список містить 3 пункти.
You can remove any item from the list by using its index number.
Swipe to show code editor
Here's your list:
groups = ["Paris", "Oslo", "Kyoto", "Sydney", "Rome"]
Remove the first and third cities from your travel_wishlist
using the del
keyword two times.