Given a string sentence, write a program that reverses it.
Reverse every character, including spaces and punctuation, and return the resulting string. Implement the function reverse_sentence(sentence), which accepts one string and returns one string. An empty string is valid input.
def reverse_sentence(sentence):