File tree 1 file changed +41
-0
lines changed
1 file changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Raymond Wu
2
+ # SoftDev2 pd7
3
+ # K22 -- Closure
4
+ # 2019-04-30
5
+
6
+ def repeat (word ):
7
+ def repeater (count ):
8
+ return word * count
9
+ return repeater
10
+
11
+ r1 = repeat ('hello' )
12
+ print ( r1 (2 ) ) #hellohello
13
+
14
+ r2 = repeat ('goodbye' )
15
+ print ( r2 (2 ) ) #goodbyegoodbye
16
+
17
+ print ( repeat ('cool' )(3 ) ) #coolcoolcool
18
+
19
+
20
+ def make_counter ():
21
+ x = 0
22
+ def counter ():
23
+ nonlocal x
24
+ x += 1
25
+ return x
26
+ def accessor ():
27
+ return x
28
+ return counter , accessor #returns tuple
29
+
30
+ ctr1 , acc1 = make_counter () #ctr1 is counter, acc1 is accessor
31
+ print ( ctr1 () ) #1
32
+ print ( ctr1 () ) #2
33
+ print ( acc1 () ) #2
34
+ ctr2 , acc2 = make_counter () #ctr2 is counter, acc2 is accessor
35
+ print ( acc2 () ) #0
36
+ print ( ctr2 () ) #1
37
+ print ( ctr1 () ) #3
38
+ print ( ctr2 () ) #2
39
+ print ( acc1 () ) #3
40
+ print ( acc2 () ) #2
41
+ print ( acc2 () ) #2
You can’t perform that action at this time.
0 commit comments