replace() and lower().
Notice in the documentation how they are used: string.lower() and string.replace(x, y), where
string is an expression that evaluates to a string and x and y are strings (x
is to be replaced by y)
Here's a file to get you started.
Notice that you're giving a function that reverses a string.
You don't have to understand how this function works; just trust it to do what it's supposed to.