I am searching for the logical Python logical operator "or"; While C++ is:
1 || 4 (using pipes)
I assume Python would simply be "or", as in:
1 or 4
Or something like this:
if var1 == "image0.GIF" or "image1.GIF" or "image2.GIF":
varValue = 10
Is this syntax for Python "or" correct in my examples?
Thank-you in advance.
sharky_machine