Concept Flow - Variable-length arguments (*args)
Function called with arguments
*args collects all extra positional arguments
Inside function, args is a tuple of those arguments
Function uses args as needed
Function returns or ends
When a function is called with extra positional arguments, *args collects them into a tuple inside the function for flexible use.