Пожалуйста, срочно !!! 80 БАЛЛОВ
Python code
Все задачи решать в одном файле
(Задачи на словари и методы к ним)
6. Вставити слово 'Java' на індекс 5
7. Вставити слово 'Sharp' на індекс 4
8. Видалити слолво 'Sharp'
9. Видалити слово 'q'
10. Видалити слово 'w'
11. Видалити останній елемент
12. Видалити передостанній елемент
Ответы
Ответ:
words = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
# 6. Insert 'Java' at index 5
words.insert(5, 'Java')
print(words) # ['a', 'b', 'c', 'd', 'e', 'Java', 'f', 'g']
# 7. Insert 'Sharp' at index 4
words.insert(4, 'Sharp')
print(words) # ['a', 'b', 'c', 'Sharp', 'd', 'e', 'Java', 'f', 'g']
# 8. Remove 'Sharp'
words.remove('Sharp')
print(words) # ['a', 'b', 'c', 'd', 'e', 'Java', 'f', 'g']
# 9. Remove 'q' (not in the list)
words.remove('q') # ValueError: list.remove(x): x not in list
# 10. Remove 'w' (not in the list)
words.remove('w') # ValueError: list.remove(x): x not in list
# 11. Remove the last element
words.pop()
print(words) # ['a', 'b', 'c', 'd', 'e', 'Java', 'f']
# 12. Remove the second-to-last element
words.pop(-2)
print(words) # ['a', 'b', 'c', 'd', 'Java', 'f']