I have a very simple beginner's question. I'm using python to re-write a php script on the server and I don't know how to translate this php code to python:
if(a && b && c && (!d || !e) doThis()
For python I only know how to do it the other way around
if a and b and c and (d or e):
doThis(etc)
How can I check **NOT** d
or **NOT** e
?