Function Python Tutorial

bigger = lambda a, b : a > b
print bigger(1,2)
print bigger(2,1)