What's the difference between || and &&?
|| (Or Operator, binary) Checks for all the conditions. If all are False, the result will be false and if any of the one is True, the result will be True....