Create a function that:
def func(x,y): if x>y: return x-y else: return y-x
pass (4,3) to the function you designed
func(4,3)
1
a = lambda x, y: x-y if x>y else y-x
a(2,3)