This does not return an error because ‘or’ operator checks second operand only when the first operand is False and here len(‘fl’)+2 is True. So the second operand i.e. int(‘fl’) is not checked.
This does not return an error because ‘or’ operator checks second operand only when the first operand is False and here len(‘fl’)+2 is True. So the second operand i.e. int(‘fl’) is not checked.