From 9a3be60d47cddd15080741feca46e67bd95fb101 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ya=C4=9Fmur?= Date: Sat, 2 Nov 2024 13:59:36 +0300 Subject: [PATCH] Create functions_yagmur_tokdemir.py --- Week04/functions_yagmur_tokdemir.py | 45 +++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 Week04/functions_yagmur_tokdemir.py diff --git a/Week04/functions_yagmur_tokdemir.py b/Week04/functions_yagmur_tokdemir.py new file mode 100644 index 00000000..e09c525e --- /dev/null +++ b/Week04/functions_yagmur_tokdemir.py @@ -0,0 +1,45 @@ +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: + """ + This function calculates a custom equation that. + + :param x: Positional-only parameter, default value is 0. + :param y: Positional-only parameter, default value is 0. + :param a: Exponent for `x`, default value is 1. + :param b: Exponent for `y`, default value is 1. + :param c: Divisor of the equation, default value is 1. + + :type x: int + :type y: int + :type a: int + :type b: int + :type c: int + + :return: The result of the custom equation ((x^a)+(y^b))/c. + :rtype: float + """ + return (x**a + y**b) / c + + + +def fn_w_counter()->(int, dict[str, int]): + """ + This funtion counts the how many times it is called and from which caller it is called. + + :rtype: tuple(int, dict[str, int]) + """ + if not hasattr(fn_w_counter, "count"): + setattr(fn_w_counter,"count",0) + setattr(fn_w_counter,"caller_dict",{}) + + + fn_w_counter.count += 1 + caller= __name__ + + if caller not in fn_w_counter.caller_dict: + fn_w_counter.caller_dict[caller] = 0 + + fn_w_counter.caller_dict[caller] += 1 + + return (int(fn_w_counter.count),dict(fn_w_counter.caller_dict))