4. Define a Python function exactly_two_equal (a, b, c) with…

4. Define a Python function exactly_two_equal (a, b, c) with three int arguments a, b, c. When called passing specific values for a, b, and c, your function should return True when exactly two of the three arguments are equal – no more, no less,  Oherwise, your function should return False. For example, exactly_two_equal(1,1,2) should return True, since only the first two arguments are equal.  exactly_two_equal(1,1,1) should return False, since all three values are equal but doesn’t satisfy “exactly two of the three arguments are equal.” You may use any Python statements.