Extracted text: Write a function named listReplace that takes 3 arguments: list1, tuple1, and tuple2. The function then searches for entries of tuple1 in list1 and replaces them with the corresponding entries in tuple2 and returns the new list. For example, listReplace( [1,2,3,2,4,1,5], (1,2), (7,8)) will return the following list, replacing all 1s in list1 with 7, and all 2s with 8: [7,8,3,8,4,7,5] Be carefull the following call listReplace( [1,1,1,8,0,0], (1,0), (e,2) ) should return [0,0,0,2,2,2] and not [2,2,2,2,2,2]. Also listReplace ([1,1,1], (0,2), (4,5)) returns the original list, because 0 and 2 do not exist in list1.