""" Rename this file from h6_shell.py to h6.py and complete the missing test cases. There should be five test cases per function. """ from list_op import * def main(): """ Five test cases for the function average. """ print(f"average([2,3,4,10]): {average([2,3,4,10]):-5f}") print(f"average([]): {average([]):-5f}") print(f"average([-99]): {average([-99]):-5f}") print(f"average([13,0,-55,92,-110,-55]): {average([13,0,-55,92,-110,-55]):-5f}") print(f"average([123456789,-909877737,1]): {average([123456789,-909877737,1]):-5f}") """ Five test cases for the function remove_duplicates. Write four test cases below. """ print(f"remove_duplicates([]): {remove_duplicates([])}") """ Five test cases for the function count_greater_occurrences. Write four test cases below. """ print(f"count_greater_occurrences([],0): {count_greater_occurrences([],0)}") """ Five test cases for the function sum_squares. Write four test cases below. """ print(f"sum_squares([]): {sum_squares([])}") if __name__ == '__main__': main()