# file format.py def concat(strings): return "".join(strings) def between(strings): bet = strings[0] others = strings[1:] return bet.join(others)