私が理解していることから、文字列をis
と と比較できます==
。これらの機能を部分的に適用する方法はありますか?
例えば:
xs = ["hello", "world"]
functools.filter(functools.partial(is, "hello"), xs)
私に与えます:
functools.filter(functools.partial(is, "hello"), xs)
^
SyntaxError: invalid syntax