From 82d864c52dd78aa602a9e90f478252eaef32a385 Mon Sep 17 00:00:00 2001 From: firatadar <108763085+firatadar@users.noreply.github.com> Date: Mon, 6 Jan 2025 22:09:24 +0300 Subject: [PATCH] functions_firat_adar_dal.py --- Week04/functions_firat_adar_dal.py | 47 ++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 Week04/functions_firat_adar_dal.py diff --git a/Week04/functions_firat_adar_dal.py b/Week04/functions_firat_adar_dal.py new file mode 100644 index 00000000..1b655cf8 --- /dev/null +++ b/Week04/functions_firat_adar_dal.py @@ -0,0 +1,47 @@ +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 + """ + try: + return (x ** a + y ** b) / c + except ZeroDivisionError: + raise ValueError("The divisor 'c' cannot be zero.") + +def fn_w_counter() -> tuple[int, dict[str, int]]: + """ + Tracks the number of times this function has been called and counts the calls by module name. + + :return: A tuple containing the total call count and a dictionary of calls by module name. + :rtype: tuple[int, dict[str, int]] + """ + if not hasattr(fn_w_counter, "counter"): + fn_w_counter.counter = 0 + fn_w_counter.call_counts = {} + + module_name = __name__ + fn_w_counter.counter += 1 + + if module_name in fn_w_counter.call_counts: + fn_w_counter.call_counts[module_name] += 1 + else: + fn_w_counter.call_counts[module_name] = 1 + + return fn_w_counter.counter, fn_w_counter.call_counts