how to write multiple conditions on new lines in a if statement code example
Example: python double condition if
if conditionA and conditionB:
print('and')
if conditionA or conditionB:
print('or')
if conditionA and conditionB:
print('and')
if conditionA or conditionB:
print('or')