You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
17 lines
245 B
Python
17 lines
245 B
Python
# closures; closing over an argument
|
|
|
|
def f(x):
|
|
y = 2 * x
|
|
def g(z):
|
|
return x + y + z
|
|
return g
|
|
|
|
print(f(1)(1))
|
|
|
|
x = f(2)
|
|
y = f(3)
|
|
print(x(1), x(2), x(3))
|
|
print(y(1), y(2), y(3))
|
|
print(x(1), x(2), x(3))
|
|
print(y(1), y(2), y(3))
|