Given a list of strings, return a new list where all the strings of the original list have been changed to a new string, where the original string is now in the middle of the new string surrounded by 3 copies of the original string.
['hello', 'world', 'python']['hellohellohellohello', 'worldworldworldworld', 'pythonpythonpythonpython']