Skip to content

Create functions_dilek_celebi.py #730

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions Week04/functions_dilek_celebi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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:
"""
:param x: The positional-only integer base parameter for the equation , default is 0
:param y: The positional-only integer base parameter for the equation , default is 0
:param a: The positional-or-keyword integer exponent parameter for the equation , default is 1
:param b: The positional-or-keyword integer exponent parameter for the equation , default is 1
:param c: The keyword-only integer divisor parameter for the equation , default is 1
:return: The result of the calculation as a float and the equation is (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,'_call_counter'):
fn_w_counter._call_counter = 0
fn_w_counter._caller_dict = {}
caller = __name__
fn_w_counter._call_counter += 1
if caller in fn_w_counter._caller_dict:
fn_w_counter._caller_dict[caller] += 1
else:
fn_w_counter._caller_dict[caller] = 1
return fn_w_counter._call_counter,fn_w_counter._caller_dict
Loading