I have a question related to if statement. I have multiple conditions as below example:
if a==a or b==b or c==c or d==d or e==e or f==f or g==g:
print("the same")
but i would also like to see if one of the conditions may be false but no matter which. Example:
cond = ['True', 'True', 'True', 'True', 'True', 'True', 'True']
# print("the same")
cond = ['False', 'True', 'True', 'True', 'True', 'True', 'True']
# print("Not the same, but one is ok")
cond = ['True', 'True', 'True', 'True', 'False', 'True', 'True']
# print("Not the same, but one is ok")
cond = ['True', 'True', 'True', 'False', 'False', 'True', 'True']
# print("Not the same")