rshepard at nospam.appl-ecosys.com wrote:
> However, I cannot find, nor create by trial-and-error, the syntax for
> alternative conditions that are ORed; e.g.,
>
> if cond1 OR if cond2:
> do_something.
if cond1 or cond2:
do_something()