0
HVHARIGOVIND VALSAKUMAR
Function to reverse a sentence
0 Comments
def reverse_words(input_str): return " ".join(reversed(input_str.split(" ")))