From 089ed4a556429e2d194e9a188662816ff11d7a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0pek=20Naz=20Sipahi?= <142670058+4idoneus@users.noreply.github.com> Date: Tue, 5 Nov 2024 06:08:16 +0300 Subject: [PATCH] Create functions_ipek_naz_sipahi.py --- Week04/functions_ipek_naz_sipahi.py | 36 +++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Week04/functions_ipek_naz_sipahi.py diff --git a/Week04/functions_ipek_naz_sipahi.py b/Week04/functions_ipek_naz_sipahi.py new file mode 100644 index 00000000..46dcff19 --- /dev/null +++ b/Week04/functions_ipek_naz_sipahi.py @@ -0,0 +1,36 @@ + +custom_power = lambda x=0, /, e=1: x ** e + +def custom_equation( + x: int = 0, + y: int = 0, + /, + a: int = 1, + b: int = 1, + *, + c: int = 1 +) -> float: + """ + Calculates the value of the equation (x**a + y**b) / c. + + :param x: The base for the first term, default is 0. (positional-only) + :param y: The base for the second term, default is 0. (positional-only) + :param a: The exponent for the first term, default is 1. (positional-or-keyword) + :param b: The exponent for the second term, default is 1. (positional-or-keyword) + :param c: The divisor, default is 1. (keyword-only) + :return: The result of the equation (x**a + y**b) / c. + :rtype: float + """ + return (x ** a + y ** b) / c + +def fn_w_counter() -> (int, dict[str, int]): + if not hasattr(fn_w_counter, "counter"): + fn_w_counter.counter = 0 + fn_w_counter.dict = {} + caller_name = __name__ + fn_w_counter.counter += 1 + if caller_name in fn_w_counter.dict: + fn_w_counter.dict[caller_name] += 1 + else: + fn_w_counter.dict[caller_name] = 1 + return fn_w_counter.counter, fn_w_counter.dict