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.
Pythonでは、現在これを行っています:
if user_can_read(request.user, b) == False:
関数が返されるかどうかを確認する他の方法はありますFalseか?
False
あなたはただ使うことができます
if user_can_read(request.user, b): ## do stuff
何かuser_can_readを返す場合(0、False などを除く)、それは True と見なされ、処理を行います。
user_can_read
そして否定:if not user_can_read(request.user, b)
if not user_can_read(request.user, b)