Back to Lesson
Multi-Return Sorting
Write a function that returns multiple calculated values as a tuple.
Instructions
- Complete thefunction so it returns a tuple containing two items: the minimum score and the maximum score from the provided list.
process_scores - The function is called with, and the result is unpacked into
scores = [45, 92, 12, 78, 88]andlowest.highest - Printand then
lowest.highest
main.py
main.py
Ctrl + Enter