Comments on: Lambda Function In Python https://www.pythonforbeginners.com/basics/lambda-function-in-python Learn By Example Fri, 04 Feb 2022 13:27:34 +0000 hourly 1 https://wordpress.org/?v=5.8.13 By: Rainer https://www.pythonforbeginners.com/basics/lambda-function-in-python#comment-121468863 Fri, 04 Feb 2022 13:27:34 +0000 https://www.pythonforbeginners.com/?p=9737#comment-121468863 Bad example since there is no need for lambda:

def print_square(n):
print(f'Square of {n} is {n**2}')

print_square(4)
print_square(3)
print_square(5)
print_square(10)

]]>