pyassistant

Reverse Strings in a List

Given a list of strings, return a new list where all the strings of the original list have been reversed.

Example:

Input:
['hello', 'world', 'python']
Output:
['olleh', 'dlrow', 'nohtyp']

Make sure you return your solution, don't print!

AI

Bot

Trying to solve my challenge? Ask if you must, or press the purple button so I can analyze your code.