Search
❯
Nov 05, 20231 min read
<Function_Name> = lambda <Paramater_List>: <Expression>
>>> foo = lambda x: x * x >>> foo(10) 100