python_reference/howtos_as_py_files/lambda_function.py

11 lines
234 B
Python
Raw Normal View History

2014-08-19 13:57:13 +00:00
# Sebastian Raschka 08/2014
# Lambda functions are just a short-hand way or writing
# short function definitions
def square_root1(x):
return x**0.5
square_root2 = lambda x: x**0.5
assert(square_root1(9) == square_root2(9))