Fish Touching🐟🎣

Python Lambda

Jul 17, 2023

<Function_Name> = lambda <Paramater_List>: <Expression>
>>> foo = lambda x: x * x
>>> foo(10)
100