Flower Compatibility Check

Check the compatibility of two flowers based on their petal counts using Python.

In many cultures, the number of petals on a flower is often associated with various superstitions or folklore. One such belief is that two flowers are considered compatible if one has an even number of petals and the other has an odd number. Create a Python function named `flower_love` that takes in the petal counts of two flowers as input. The function should return `True` if the two flowers are compatible according to this rule; otherwise, it should return `False`. ### Parameters - `flower1`: An integer in the range 0 ≤ flower1 ≤ 10^5, representing the petal count of the first flower. - `flower2`: An integer in the range 0 ≤ flower2 ≤ 10^5, representing the petal count of the second flower. ### Return Value - The function should return `True` if one flower has an odd number of petals and the other flower has an even number. Otherwise, the function should return `False`. ### Examples ```python flower_love(1,2) # Returns: True flower_love(2,4) # Returns: False flower_love(0,0) # Returns: False flower_love(2,5) # Returns: True ```