def print_items(x): """prec: x is a list or a tuple postcondtion: Each item of the list is printed on its own line.""" pass print_items(("a", "b", "c"))