• Source
    1. spin_words = lambda sentence: " ".join(list(map(lambda x: x[::-1] if len(x) >= 5 else x, sentence.split(" "))))