from dict_op import * def main(): """ Different dicts for testing. """ d1 = {} """ Define five more dictionary for efficent testing here. """ """ Six test cases for the function get_max_value. """ print(f"get_max_value({d1}): {get_max_value(d1)}") print(f"get_max_value({d2}): {get_max_value(d2)}") print(f"get_max_value({d3}): {get_max_value(d3)}") print(f"get_max_value({d4}): {get_max_value(d4)}") print(f"get_max_value({d5}): {get_max_value(d5)}") print(f"get_max_value({d6}): {get_max_value(d6)}") """ Six test cases for each of the other functions to be completed by you. """ if __name__ == '__main__': main()