Fatboy SlimFollowFeb 18·1 min read[Study][Python] lambdaThis is a note for python study.The Lambda can use a function by one line code.For example, below add function is two lines as below.def add_up(x,y): return x+yWe can re-write one line as below.add_up = lambda x, y:x+yThe result is the same.