Program to reverse a given string.
Implement reverse_string(s) to return a new string containing the characters of s in reverse order. Preserve every character exactly, including spaces, punctuation, digits, and letter case.
Input: a Python string s. Output: the reversed Python string.
s contains standard Python string charactersdef reverse_string(s):