Given a list of strings, return a new list where all the strings of the original list have been reversed.
['hello', 'world', 'python']
['olleh', 'dlrow', 'nohtyp']
Bot