python if condiion with and and or code example
Example 1: or statement python
if x==1 or y==1:
print(x,y)
Example 2: python if and
if foo == 'abc' and bar == 'bac' or zoo == '123':
# do something
if x==1 or y==1:
print(x,y)
if foo == 'abc' and bar == 'bac' or zoo == '123':
# do something