!!! ДАЮ 65 БАЛЛОВ !!!
(Python code)
всі задачі виконувати в одному файлі послідовно, одна за іншою
1. створити список, з елементами 'q', 'w'
2. Додати в список 5 довільних елементів
3. Створити другий список і додати до нього 3 елементи
4. об'єднати списки 1 та 2
5. Вставити слово 'Python' на індекс 4
6. Вставити слово 'Java' на індекс 5
7. Вставити слово 'Sharp' на індекс 4
8. Видалити слолво 'Sharp'
9. Видалити слово 'q'
10. Видалити слово 'w'
Ответы
1. list1 = ['q', 'w']
2. list1.extend(['a', 'b', 'c', 'd', 'e'])
3. list2 = ['x', 'y', 'z']
4. list1.extend(list2)
5. list1.insert(4, 'Python')
6. list1.insert(5, 'Java')
7. list1.insert(4, 'Sharp')
8. list1.remove('Sharp')
9. list1.remove('q')
10. list1.remove('w')
# 1. Create a list with elements 'q' and 'w'
list1 = ['q', 'w']
# 2. Add 5 more elements to the list
list1 += ['a', 'b', 'c', 'd', 'e']
# 3. Create a second list and add 3 elements to it
list2 = ['x', 'y', 'z']
# 4. Concatenate the two lists
list3 = list1 + list2
# 5. Insert the word 'Python' at index 4
list3.insert(4, 'Python')
# 6. Insert the word 'Java' at index 5
list3.insert(5, 'Java')
# 7. Insert the word 'Sharp' at index 4
list3.insert(4, 'Sharp')
# 8. Remove the word 'Sharp'
list3.remove('Sharp')
# 9. Remove the word 'q'
list3.remove('q')
# 10. Remove the word 'w'
list3.remove('w')