Your question is String Reversal Function. Start with the requirements on the right.
Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.
UMass Boston WISER displays short notification messages that may need to be rendered in reverse for a formatting test. Write a function that returns the characters in a message in reverse order.
Implement reverse_wiser_message(message).
message, a Python string.Python strings are immutable, so build a mutable character list, reverse it with two pointers, then join it into the result.
def reverse_wiser_message(message):