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

Add python examples #9

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
15 changes: 15 additions & 0 deletions Python/1-closure.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import math


def create_log(base):
def log(n):
Comment on lines +4 to +5

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

More direct translation would use lambdas here.
def translates as function in JavaScript

return math.log(n, base)
return log


if __name__ == '__main__':
lg = create_log(10)
ln = create_log(math.e)

print('lg(100) = ', lg(100))
print('ln(5) = ', ln(5))
14 changes: 14 additions & 0 deletions Python/4-partial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is that a PEP requirement to have an empty line in the beginning of the file if there are no comments and imports?

def partial(fn, x):
return lambda *args: fn(x, *args)


def summary(a, b, c, d):
Comment on lines +2 to +6

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto, lambdas would more direct translation

return a + b + c + d


if __name__ == '__main__':
f1 = partial(summary, 1)
f2 = partial(f1, 2)
f3 = partial(f2, 3)
print(f3(4))
18 changes: 18 additions & 0 deletions Python/5-partial-ext.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

def partial(fn, *args):
return lambda *rest: fn(*(args + rest))


def summary(a, b, c, d):

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's use the same identifacators names so a person learning different languages would have easier time understanding the analogy between JavaScript and Python

Suggested change
def summary(a, b, c, d):
def sum4(a, b, c, d):

return a + b + c + d


if __name__ == '__main__':
f1 = partial(summary, 1)
f2 = partial(f1, 2)
f3 = partial(f2, 3)
print(f3(4))

f11 = partial(summary, 1, 2)
f12 = partial(f11, 3)
Comment on lines +11 to +17

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto, let's use the same variable names

print(f12(4))
29 changes: 29 additions & 0 deletions Python/7-curry.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@

def curry(fn, *args, **kwargs):
def wrapper(*iargs, **ikwargs):
all_args = args + iargs
all_kwargs = {**kwargs, **ikwargs}
try:
return fn(*all_args, **all_kwargs)
except TypeError:
return curry(fn, *all_args, **all_kwargs)
return wrapper
Comment on lines +2 to +10

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's cool: quite nice solution for kwargs 👍



def summary(a, b, c, d):
return a + b + c + d


if __name__ == '__main__':

f = curry(summary)

y1 = f(1, 2, 3, 4)
y2 = f(1, 2, 3)(4)
y3 = f(1, 2)(3)(4)
y4 = f(1)(2)(3)(4)
y5 = f(1)(2, 3, 4)
y6 = f(1)(2)(3, 4)
y7 = f(1, 2)(3, 4)

print(y1, y2, y3, y4, y5, y6, y7)