Given a list of strings, return a new list where each string is replaced by 3 copies of the string concatenated together.
['hello', 'world', 'python']
['hellohellohello', 'worldworldworld', 'pythonpythonpython']
Bot