How to check if a String equals to Empty, and to a different string constant (such as '\n', '\t', etc.) with Python?
This is what I used:
if not text or text == '\n' or text == '\t':
log.debug("param 'text': " + text)
return None
how to do it better?