kopia lustrzana https://github.com/micropython/micropython-lib
9 wiersze
136 B
Python
9 wiersze
136 B
Python
|
from functools import partial
|
||
|
|
||
|
def foo(x, y, prompt="result:"):
|
||
|
print(prompt, x + y)
|
||
|
|
||
|
|
||
|
f = partial(foo, 10, prompt="arg+10:")
|
||
|
f(20)
|