Introduction
Functions can send back more than one value at a time using tuples. This helps keep related values together in a simple package.
When you want to return multiple pieces of information from a function, like a name and age.
When you want to return different types of values together, such as a number and a string.
When you want to return a status and a result from a process.
When you want to group small related data without creating a new type or class.