-
-
Notifications
You must be signed in to change notification settings - Fork 62
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import math | ||
|
||
|
||
def create_log(base): | ||
def log(n): | ||
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)) |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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)) |
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): | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
|
||||||
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
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ditto, let's use the same variable names |
||||||
print(f12(4)) |
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
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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) |
There was a problem hiding this comment.
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 asfunction
in JavaScript