Ответ:
Объяснение:
# Створення списків
flowers = ['Rose', 'Lily', 'Tulip', 'Sunflower']
trees = ['Oak', 'Maple', 'Pine']
# Об'єднання списків
plants = flowers + trees
# Розділення списку
tree = plants[:3]
flowers = plants[-3:]
# Виведення результатів
print("Список квітів:", flowers)
print("Список дерев:", tree)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
Объяснение:
# Створення списків
flowers = ['Rose', 'Lily', 'Tulip', 'Sunflower']
trees = ['Oak', 'Maple', 'Pine']
# Об'єднання списків
plants = flowers + trees
# Розділення списку
tree = plants[:3]
flowers = plants[-3:]
# Виведення результатів
print("Список квітів:", flowers)
print("Список дерев:", tree)