What is a simpler, more pythonic way of expressing the following?

python

Solution

DeMorgan's Law, perhaps?

return not (a or b)

I think it's sufficiently simple at that point

Problem

``` return not a and not b ``` ^ how do I express this in a better format

Original source