0
比方說,我有一個函數:使用部分()來解決條款無序
def my_function(a, b, c):
# Some Code
我可以使用:
functools.partial(my_function, "hello")
要獲得一個可調用的my_function
其中a="hello"
。但是,假設我想設置參數b
的值。我怎麼可以設置參數b
的價值沒有做這樣的事情:
functools.partial(my_function, "hello", "bob")
這樣也(不希望)設置參數a
的價值?
嗯,這很容易!知道必須有一個簡單的方法來做到這一點。 – terminex9 2015-02-12 04:31:54
不能四分鐘 – terminex9 2015-02-12 04:39:01