Skip to content
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

functions_melisa_sahin.py #98

Merged
merged 2 commits into from
Mar 19, 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
44 changes: 44 additions & 0 deletions Week03/functions_melisa_sahin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
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 adds the b power of the y variable to the a power of the x variable. Divides the result by variable c.

:param x: First base number, default is 0
:type x: int
:param y: Second base number, default is 0
:type y: int
:param a: First exponent number, default is 1
:type a: int
:param b: Second exponent number, default is 1
:type b: int
:param c: Division number, default is 1
:type c: int
:return: Returns the result of the equation as a float
:rtype: float

"""
return float((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.caller_info = {}

caller_name = __name__
fn_w_counter.counter += 1

if caller_name in fn_w_counter.caller_info:
fn_w_counter.caller_info[caller_name] += 1
else:
fn_w_counter.caller_info[caller_name] = 1

return (fn_w_counter.counter, fn_w_counter.caller_info)






Loading