“Older married couples divorce less because they got married…

“Older married couples divorce less because they got married at a time when you ‘worked on your marriage’ and learned to agree. The younger generation are quicker to give up on their marriages based on minor problems.” What type of explanation is this for differences in divorce rates?

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.