def f1(x,y): if x: x = [1,2,3] x.append(4) else: x = 2 return x + y L1 = [1,2,3] L2 = [55,66] L3 = [] y = 3 prin
The condition is whether or not x is a truthy value