-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathslideshow.html
More file actions
1123 lines (803 loc) · 20.9 KB
/
slideshow.html
File metadata and controls
1123 lines (803 loc) · 20.9 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>FP & Python</title>
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
h1, h2, h3 {
font-weight: 400;
margin-bottom: 0;
}
.remark-slide-content h1 { font-size: 3em; }
.remark-slide-content h2 { font-size: 2em; }
.remark-slide-content h3 { font-size: 1.6em; }
.footnote {
position: absolute;
bottom: 3em;
}
li p { line-height: 1.25em; }
.red { color: #fa0000; }
.large { font-size: 2em; }
a, a > code {
color: rgb(249, 38, 114);
text-decoration: none;
}
code {
background: none repeat scroll 0 0 #F8F8FF;
border: 1px solid #DEDEDE;
border-radius: 3px ;
padding: 0 0.2em;
}
.remark-code, .remark-inline-code {
font-family: "Bitstream Vera Sans Mono", "Courier", monospace;
white-space: pre;
}
.remark-code {
font-size: 0.67em;
}
.remark-code-line-highlighted { background-color: #373832; }
.pull-left {
float: left;
width: 47%;
}
.pull-right {
float: right;
width: 47%;
}
.pull-right ~ p {
clear: both;
}
#slideshow .slide .content code {
font-size: 0.8em;
}
#slideshow .slide .content pre code {
font-size: 0.9em;
padding: 15px;
}
.main-title, .title {
background: #272822;
color: #777872;
text-shadow: 0 0 20px #333;
}
.title h1, .title h2, .main-title h1, .main-title h2 {
color: #f3f3f3;
line-height: 0.8em;
}
/* Custom */
.remark-code {
display: block;
padding: 0.5em;
}
.remark-slide-number {
display: none;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 90%;
}
</style>
</head>
<body>
<textarea id="source">
class: center, middle, main-title
# FP & Python
[GothPy](https://www.meetup.com/GothPy/) - Gothenburg's Python Meetup group
Johan Lodin, 2019-11-21
github.com/jolod
---
## Outline
- Motivating examples
- Challenges applying FP
- What *is* FP?
- State in functional programs
- Principles
- Abstraction
- Interpretation
- Composition
- Tools for FP in Python
- Summary
--
- Slides are written in Markdown.
- Slides are wordy and simple, so that they can be read directly on GitHub.
`github.com/jolod/presentation-fp-python`
---
class: center, middle, main-title
# Motivating examples
---
## Reasoning
```python
x = 3
y = f(x)
z = g(y)
print(x) # 3
```
--
```perl
my $x = 3;
my $y = f($x);
my $z = g($y);
say $x; # ???
```
--
```python
x = [3]
y = f(x)
z = g(y)
print(x[0]) # 3 ???
```
--
```python
x = [3]
y = f(x)
y = g(y)
y = h(y)
y = i(y)
y = j(y)
y = k(y)
y = l(y)
y = m(y)
y = n(y)
y = o(y)
y = p(y)
y = q(y)
print(x[0]) # 3 ???
```
---
## Compositional APIs
```python
import matplotlib.pyplot as plt
x = [1, 2, 3]
y = [2, 4, 8]
plt.plot(x, y, '-')
plt.show()
plt.plot(x, y, '.-')
plt.show()
plt.subplot(1,2,1)
plt.plot(x, y, '-')
plt.subplot(1,2,2)
plt.plot(x, y, '.-')
plt.show()
```
---
## Compositional APIs
```R
library("ggplot2")
x <- c(1, 2, 3)
y <- c(2, 4, 8)
p <- ggplot() + aes(x, y)
p
p1 <- p + geom_line()
p1
p2 <- p1 + geom_point()
p2
require(gridExtra)
grid.arrange(p1, p2, ncol=2)
```
---
## Honorable mention: generators
```python
def fibonacci(n):
"""Compute the nth Fibonacci number."""
(a, b) = (0, 1)
for k in range(n):
(a, b) = (b, a + b)
return a
```
Consider updating to take the `n`th number divisible by `k` (or some other criterion).
- Write a new function?
- Pass in filter criterion?
--
```python
def fibonacci(n, pred):
"""Compute the nth Fibonacci number that fulfills the criterion pred."""
if n <= 0:
return
(a, b) = (0, 1)
k = 1 if pred(a) else 0
while k < n:
(a, b) = (b, a + b)
if pred(a):
k += 1
return a
```
---
## Honorable mention: generators
Generators are mutating objects, so not very functional, but serve to *invert the control*.
```python
def fibonacci_gen():
"""Generate the Fibonacci sequence."""
(a, b) = (0, 1)
while True:
yield a
(a, b) = (b, a + b)
```
```python
def fibonacci(n):
g = fibonacci_gen()
skip(n, g)
return next(g)
```
```python
n = 3
k = 7
g = (a for a in fibonacci_gen() if a % k == 0)
skip(n - 1, g)
print(next(g))
```
---
## Common selling points
- Easy to reason about / Reduces complexity
- Inherently testable
- Easy to parallelize
--
All this is true for Matlab too!
- Matlab is imperative but with pure functions.
- Matlab has (clever) copy-on-write semantics.
---
class: center, middle, main-title
# Challenges applying FP
---
## Abstraction inversion
https://softwareengineering.stackexchange.com/questions/9006/whats-your-strongest-opinion-against-functional-programming
--
Answer by Mason Wheeler, 2010-10-02: (bold emphasis added by me)
> I think that the reason functional programming isn't used very widely is because it gets in your way too much. It's hard to take a serious look at, for example, Lisp or Haskell, without saying "this whole language is **one big abstraction inversion**."
--
> When you establish baseline abstractions that the coder can't get beneath when necessary, you establish things that **the language simply can't do**, and the more functional the language is, the more of these it tends to have.
--
> Take Haskell, for example. In the name of functional purity, you're required to use **brain-breaking abstraction inversions that nobody understands** in order to manage state and I/O, *the two most fundamental parts of any and every computer program that interacts with anything!* That gets old fast.
---
## "Brain breaking"?
- Often brain breaking because you've *learned a different way already*.
- 20 years ago some companies did not allow `map` in the code base because "the next programmer wouldn't understand it".
What's brain breaking today, might very well be obvious tomorrow.
---
## The learning resources gap
A large portion of articles write about functional programming in the small.
- Map, filter, reduce.
- Partial functions and currying.
--
A small portion of articles write about functional programming in the large.
- IO
- Modularity
- Extensibility
- Testing
--

---
## The learning resources gap
A large portion of articles write about functional programming in the small.
- Map, filter, reduce.
- Partial functions and currying.
A small portion of articles write about functional programming in the large.
- IO
- Modularity
- Extensibility
- Testing

---
class: center, middle, main-title
# What do I mean by FP?
Not just immutable data and higher-order functions
Structure vs techniques
---
## The IP-FP spectrum
Extreme imperative programming (IP):
> A *Turing machine* is a mathematical model of computation that defines an abstract machine, which manipulates symbols on a strip of tape according to a table of rules. Despite the model's simplicity, given any computer algorithm, a Turing machine capable of simulating that algorithm's logic can be constructed. (1936)
Easy to imagine how a physical Turing machine affects the world.
http://turingmachine.io/
--
You don't program Turing machines:
- Register machines (assembly; gotos)
- Structured programming (statements, while, if)
- Procedural programming (blocks, scopes, return)
---
## The IP-FP spectrum
Extreme functional programming (FP):
> *Lambda calculus* is a formal system in mathematical logic for expressing computation based on **function abstraction** and **application** using variable binding and substitution. It is a universal model of computation that can be used to simulate any Turing machine. (1930s)
--
[Visualization](https://www.cl.cam.ac.uk/~rmk35/lambda_calculus/lambda_calculus.html) of 2 + 3.
```text
((fn n m => fn f x => n f (m f x)) (fn f => fn x => f (f x)) (fn f => fn x => f (f (f x))))
```
--
Not realized to be a "programming language" until around 1960.
---
## Church encoding examples
```python
TRUE = lambda then: lambda _: then
FALSE = lambda _: lambda otherwise: otherwise
IF = lambda cond: lambda then: lambda otherwise: cond(then)(otherwise) # Redundant
AND = lambda p: lambda q: p(q)(p)
TWO = lambda f: lambda x: f(f(x))
FIVE = lambda f: lambda x: f(f(f(f(f(x)))))
INC = lambda n: lambda f: lambda x: f(n(f)(x))
THREE = INC(TWO)
PLUS = lambda n: n(INC)
DEC = lambda n: lambda f: lambda x: n(lambda g: lambda h: h(g(f)))(lambda _: x)(lambda y: y)
MINUS = lambda m: lambda n: n(DEC)(m)
ISZERO = lambda n: n(lambda x: FALSE)(TRUE)
EQ = lambda m: lambda n: AND(ISZERO(MINUS(m)(n)))(ISZERO(MINUS(n)(m)))
PAIR = lambda a: lambda b: lambda selector: selector(a)(b)
FIRST = lambda pair: pair(lambda a: lambda _: a)
SECOND = lambda pair: pair(lambda _: lambda b: b)
RESULT = EQ(PLUS(TWO)(THREE))(FIVE)
```
```python
outputs = PAIR("It's true!")("I think there is a bug somewhere.")
print(
IF(RESULT) \
(FIRST(outputs)) \
(SECOND(outputs))
)
```
```text
It's true!
```
---
## The point: functions are "all you need"
Data:
- Numerals => chars
- Variants (pairs) => lists
- Chars and lists => strings
- Lists and pairs => dictionaries
- Dictionaries and lambdas => prototypal OO
- **Etc!**
Logic:
- Variants for branching
- Recursion for looping
- **Etc!**
Pure λ-calculus isn't exactly "ergonomic" though.
---
## Characteristics of λ-calculus
`Data == functions (because only functions)`
--
`Control flow == data (because only functions)`
--
`Higher order functions (because only functions)`
--
`Only one-argument functions (reductionist, but practical!)`
--
`Non-strict evaluation (for technical reasons)`
(You don't actually *evaluate* λ-calculus, you *reduce* terms.)
--
`No mutable data (makes no sense)`
--
`No statements, only expressions (makes no sense)`
--
`No side effects of any kind (makes no sense)`
--
Not here:
- Pattern matching
- Variants very important though!
- Types
- Can carry information!
---
class: center, middle, main-title
# State
"There is no *shared mutable* state in FP"
---
## "Imperative" vs functional state
--
Raise your hand when you are *certain* of what this does:
--
```python
def foo(n, k=0):
result = 0
while True:
if k >= n:
break
result += k
k += 1
return result
```
--
What is `foo(5, 3)`?
--
```python
def foo(n, k=0):
result = 0
for m in range(k, n):
result += m
return result
```
- Which is easier to understand?
- Why?
---
## "Imperative" vs functional state
```python
def range_sum(n, k=0):
result = 0
while True:
if k >= n:
break
result += k
k += 1
return result
```
- What happens if we do `k += 1` before `result += k`?
--
```python
def range_sum(n, k=0, result=0):
if k >= n:
return result
else:
return range_sum(n, k + 1, result + k)
```
State moved from loop variables to function arguments.
--
- `k + 1` and `result + k` are unordered.
- Still a "manual" loop though.
- Doesn't sell FP on anyone.
---
## "Imperative" vs functional state
```python
def range_sum(n, k=0):
result = 0
for m in range(k, n):
result = result + m
return result
```
--
Another "abstraction inversion":
```python
def range_sum(n, k=0):
return reduce(
lambda result, m: result + m,
range(k, n),
0
)
```
- 1-to-1 with the imperative version.
- But even more structure.
---
## "Imperative" vs functional state
FP has "local" state just as IP does:
- General recursion is the "least structured" way.
- Often the most structured way is favored.
- Just like `for` is favored over `while`.
Key difference: *all* state at *every level* is local state. (Except the top level, where IO is allowed.)
--
Yet, at this scale, almost no benefit regarding
- reasonability,
- testability, or
- parallelism.
---
class: center, middle, main-title
# Some core FP principles
Abstraction, interpretation & composition
---
class: center, middle, main-title
# Abstraction
---
## Higher-order functions
- `reduce` abstracts over *structure*.
--
- `reduce` is a function and can be *abstracted over*.
- Cannot abstract over `for` directly.
--
```python
def range_sum(reducer, n, k=0):
return reducer(operator.add, range(k, n), 0)
```
- `range_sum` is now a *third*-order function (takes a second-order function).
---
## Inversion of Control (IoC)
- Higher-order functions (HOF) are a form of dependency inversion (DI).
- Too high order might hint at mixing high and low level abstractions.
```python
def range_sum(summer, n, k=0):
return summer(range(k, n))
```
- Reduced to second-order again.
---
## Building computations
Functions as values.
```python
def range_sum(n, k=0):
return lambda summer: summer(range(k, n))
```
--
Can talk about range sums without talking about how to sum it (yet).
```python
def plus(a, b):
return lambda summer: summer(n(summer) for n in [a, b])
```
Very light-weight "pattern".
(This is why it is practical to have one-argument functions only (or "curried" functions); you don't have to be explicit about whether `summer` is the third argument of `plus`, or an argument of the return value.)
--
```python
total = plus(range_sum(5, 1), range_sum(3, 1))
mysum = lambda xs: reduce(operator.add, xs, 0)
print(total(mysum)) # 1+2+3+4 + 1+2 = 13
myprod = lambda xs: reduce(operator.mul, xs, 1)
print(total(myprod)) # 1*2*3*4 * 1*2 = 48
print(total(lambda xs: xs)) # [range(1, 5), range(1, 3)]
```
The lack of (visible) argument names for the closures can make this style harder to read.
---
class: center, middle, main-title
# Interpretation
Inversion of control *flow*
---
## Interpretation vs dependency injection
- No side effects.
- Turn a value into another value.
- Turn a structure into another structure.
--
Point of view: all values are structures.
- Lists (etc) are structures (interpreted using `for`/`reduce`).
- Records/objects are structures (interpreted using attribute lookup).
- Functions are structures (interpreted by calling them).
- Booleans are structures (interpreted using `if`).
Booleans are the simplest example of a *variant data type*.
---
## Variant data types
Cannot rely on only passing in behavior.
- Want side effects close to the top level.
- Must communicate actions through return values.
--
- Variants model branching, in contrast to aggregations.
- Python (and most OO languages) do not support branching on variants syntactically (except booleans).
- Variants ~~ visitor pattern.
- Visitor implementations is rare in OOP, but variants are *everywhere* in FP.
Remember: booleans are variants.
---
## Booleans and beyond
```haskell
-- Haskell, sorry. :-(
data Boolean = True | False
case result of
True -> ...
False -> ...
```
--
```haskell
-- Explicitly encoding possibility of None.
data Maybe a = Just a | Nothing
case result of
Just x -> ... -- Make good use of x.
Nothing -> ... -- Do thing else.
```
- `Just` is like `True` but carries a value.
- `Nothing` is like `False`. (Or vice versa.)
--
```haskell
-- Handle exceptions etc.
data Result error value = Failure error | Success value
```
Variants can have any number of cases, and store any number of values.
---
## Variants in Python
```python
def f(result):
if result.tag == "success":
value = result.value
return ...
elif result.tag == "failure":
error = result.error
return ...
else:
raise Exception("Unknown tag: %s" % (result.tag,))
```
This might look upsetting to some.
Remember: booleans are variants!
---
## How to *not* use variants
```haskell
data Shape a = Circle a
| Ellipse a a
| Square a
```
This will lead to pain down the line.
--
Use variants when
- The cases aren't meaningful *by themselves*.
- **And** the cases are fundamental/primitives.
- Fundamental means that you don't want to add new cases.
- If you *do* add cases you *want* to update all the code using them.
--
Booleans are good:
- True is only meaningful as a contrast to false (and vice versa).
--
`Maybe` is good:
- `Just` is only meaningful in the presence of `Nothing`.
--
`Shape` above is bad:
- Circles are useful by themselves.
- Might want to add more shapes (e.g. `Rectangle`)
---
## Variants in Python redux
Booleans:
```python
TRUE = lambda then, otherwise: then()
FALSE = lambda then, otherwise: otherwise()
print(TRUE(lambda: 42, lambda: "Dunno")) # 42
print(FALSE(lambda: 42, lambda: "Dunno")) # Dunno
```
Very light-weight compared to the visitor pattern.
See one of the exercises.
---
class: center, middle, main-title
# Composition
---
## Abstraction + interpretation
Abstraction and interpretation work in tandem to
- focus libraries on the core problem, and
- push side effects to the edge.
Libraries > frameworks w.r.t. composability
Libraries are built using other libraries.
Frameworks are built using ...?
---
## Acting on results
"Naïve" variants only take you so far.
What if you want to act on the result of an action that requires interpretation?
For instance:
```python
# Ignore exceptions for now.
import os
def count_chars_of_file(filename):
f = os.open(filename)
text = os.read(f)
n = len(text)
os.close(f)
return n
```
--
(The answer is *not* monads in Python.)
---
## Acting on results
Made-up node.js library:
```javascript
function countCharsOfFile(filename) {
return action("open", filename).then((f) => {
return action("read", f).then((text) => {
let n = text.length();
return action("close", f).then(() => {
return result(n);
})
})
})
}
```
Builds computations stored in variants (`action` and `result`).
---
## Acting on results
In Python:
```javascript
def count_chars_of_file(filename):
def after_open(f):
def after_read(text):
n = len(text)
def after_close():
return Result(n)
return Action("close", f).then(after_close)
return Action("read", f).then(after_read)
return Action("open", filename).then(after_open)
```
Not pretty. :-(
But see one of the exercises nonetheless.
---
## Coroutines
(Credit: Magnus Therning, https://magnus.therning.org/posts/2017-01-31-000-on-mocks-and-stubs-in-python--free-monad-or-interpreter-pattern-.html)
```python
os = Actions('os')
def count_chars_of_file(filename):
f = yield os.open(filename)
text = yield os.read(f)
n = len(text)
yield os.close(fd)
return n
```
- `os` uses dynamic lookup to return the method name and arguments as data instead of performing the action.
- The consumer of `count_chars_of_file` uses the `send` method to communicate the results back.
- `... = yield from ...` allows refactoring.
--
- The caller makes the interpretation, or passes on the description.
- Depend on globally available *descriptions* (i.e. data).
See one of the exercises.
---
class: center, middle, main-title
# Tools for FP in Python
---
## Libraries
- [functools](https://docs.python.org/3.8/library/functools.html)
- [operator](https://docs.python.org/3.8/library/operator.html)
- [pyrsistent](https://pypi.org/project/pyrsistent/)
Honorable mention: