Question: 1 6 . Implement fixed _ points Read the specification of the function fixed _ points in the module funcs. Implement this function according to

16. Implement fixed_points
Read the specification of the function fixed_points in the module funcs. Implement this function according to its specification. This is a function where it is particularly helpful to look at the examples and test cases.
When you have implemented the function, test your answer with the test script. You should now pass all tests.def fixed_points(tup):
"""
Returns a copy of tup, including only the "fixed points".
A fixed point of a tuple is an element that is equal to its position in the tuple.
For example 0 and 2 are fixed points of (0,3,2). The fixed points are returned in
the order that they appear in the tuple.
Examples:
fixed_points((0,3,2)) returns (0,2)
fixed_points((0,1,2)) returns (0,1,2)
fixed_points((2,1,0)) returns (1,)
Parameter tup: the tuple to copy
Precondition: tup is a tuple of ints
"""

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!