can i do if this or this and this or this python code example
Example 1: python if and
if foo == 'abc' and bar == 'bac' or zoo == '123':
# do something
Example 2: python or
x = 1
y = 10
if x%2 == 0 or y%2 == 0:
print(x%2)
#Output#
#1
if foo == 'abc' and bar == 'bac' or zoo == '123':
# do something
x = 1
y = 10
if x%2 == 0 or y%2 == 0:
print(x%2)
#Output#
#1