''' Find the list which has the highest mean and the value of that mean. Inform the user about your findings using print statements. Start with writing pseudocode. Hints: - Which NumPy function could come handy here? - Use a for loop and track the highest mean ''' list1 = [3, 5, 7, 9, 2, 4, 6, 8, 10, 1, 3, 5] list2 = [7, 9, 2, 4, 7, 5, 3, 1, 8, 6] list3 = [2, 4, 6, 9, 10, 3, 5, 6, 9] list4 = [1, 3, 5, 7, 9, 1, 3, 5, 7, 2, 4, 6, 8, 10] list5 = [4, 6, 8, 10, 2, 4, 6, 8, 10, 1, 3, 5, 7, 9] # Your code here