Section 1. Chapter 6
single
Challenge: Unpacking Tuple Elements
Swipe to show menu
Task
Swipe to start coding
Given a tuple of numbers, write a function that unpacks the first and last elements and returns their sum.
- Unpack the first and last elements from the
numberstuple. - Calculate and return the sum of the extracted first and last elements. If the tuple contains only one item, return that item added to itself.
- Use the extended iterable unpacking syntax
(first, *middle, last) = numbersto isolate the first and last elements from the tuple when it contains more than one item. - Replace the brackets (
___) in the code with your implementation.
Solution
Everything was clear?
Thanks for your feedback!
Section 1. Chapter 6
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat