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.
operator モジュールにブール値 (ビットごとではない) と演算子が見つからないことに驚いています。
http://docs.python.org/2/library/operator.html
どうしてこんなことに?回避策はありますか?
自分で書くことができます:
logical_and = lambda a, b: a and b