Write a program that takes a string as input and returns the string in reverse order.
Example:
Input: "Hello, World!"
Output: "!dlroW ,olleH"
In Python, strings are sequences of characters, which means they can be indexed. You can use negative indexing and slicing techniques to reverse the order of the string.
NOTEOwing to browser caching, any code input into the Trinket IDE might carry over across page refreshes or when transitioning between different questions. To commence with a clean slate, either click on the 'Reset Button' found within the IDE's Hamburger icon (☰) menu or resort to using Chrome's Incognito Mode.