From b8ed0ee1dcf37e1bf02238301cfa4ca8ce7f6297 Mon Sep 17 00:00:00 2001 From: kunal saini <52192993+kunal254@users.noreply.github.com> Date: Thu, 17 Feb 2022 13:00:32 +0530 Subject: [PATCH] Update 11_functions.md --- 11_Day_Functions/11_functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/11_Day_Functions/11_functions.md b/11_Day_Functions/11_functions.md index a80e5bf..d40c28a 100644 --- a/11_Day_Functions/11_functions.md +++ b/11_Day_Functions/11_functions.md @@ -365,7 +365,7 @@ print(generate_groups('Team-1','Asabeneh','Brook','David','Eyob')) ```py #You can pass functions around as parameters def square_number (n): - return n * n + return n ** n def do_something(f, x): return f(x) print(do_something(square_number, 3)) # 27