What is the output of the following code ?
def foo(p=5, e=6): p += e e += 1 print(p, e) foo(e=8, p=9)
As the values for e and p is passed as keyword arguments, result of p += e will be 17 and e += 1 will be 9
p += e
e += 1
Comment here: