What is the output of the following code ?
def foo(x, y, z): return x + y + z print(foo(10, 11, 12))
Functions can also be defined in a single line if the function block has one line
Comment here: