Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
lambda xxxx: a/b
x がある場所には何を置きますか? また、ラムダで*argsandを使用するにはどうすればよいですか? **kwargs出来ますか?
*args
**kwargs
不可能です。*args最善の解決策は、可能な関数を使用すること**kwargsです。
argsneeded = ['foo', 'bar'] def whatever(**kwargs): if not all(x in kwargs for x in argsneeded): raise ValueError('required kwarg is missing')