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.
[f for f in (lambda x: x, lambda x: x**2) if f(1) == 1]
(lambda x: x, lambda x: x**2)パラメータ「1」に対して「1」を返すすべての関数のリストを作成します。
(lambda x: x, lambda x: x**2)
もちろん、どちらもそうなので、この表現はちょっと役に立ちません。どこで見ましたか?