What does this function return ?
def fun(a, b, c): return a, a+b, a+b+c
The sum of each of its arguments
A list containing three elements
A tuple containing three elements
Nothing, there is a synthax error