Skip to content

Commit 74f4d74

Browse files
committedApr 30, 2019
add K22
1 parent a6ff652 commit 74f4d74

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed
 

‎22_closure/closure.py

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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

0 commit comments

Comments
 (0)