What is the output of the following code ?
def func(x, y, z=5): print(x, y, z) func(1, y=3, z=2)
The arguments will be assigned as followsx => 1 # positional argumenty => 3 # keyword argumentz => 2 # overriding keyword argument
Comment here: