forked from canbula/PythonProgramming
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions_burak_talha_memis.py
33 lines (29 loc) · 1016 Bytes
/
functions_burak_talha_memis.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
:param x:The first number, default is 0
:type x: int
:param y:The second number, default is 0
:type y: int
:param a:The third number, default is 1
:type a: int
:param b:The fourth number, default is 1
:type b: int
:param c:The fifth number, default is 1
:type c: int
:return:The sum of 'x' power 'a' and 'y' power 'b' divided by c
:rtype:float
"""
return (x**a + y**b) / c
def fn_w_counter() -> (int, dict[str, int]):
if not hasattr(fn_w_counter, "call_count"):
fn_w_counter.call_count = 0
fn_w_counter._dict = {}
caller_name = __name__
fn_w_counter.call_count += 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.call_count, fn_w_counter._dict