Skip to content

Operators_Logical

Flavio Lionel Rita edited this page Apr 25, 2021 · 1 revision
context = {"a":9,"b":4,"c":{"a":4,"b":5},"d":None}
operator example result
&& b == c.a && a>b True
|| b != c.a || a>b True
! !(b != c.a || a>b) False
Clone this wiki locally