But I still need my shot of Python now and then. Often I end up just doing small non useful snippets like list comprehensions stuff. I just love them, they are so beautiful and they make me happy :)
>>> # Find the longest words >>> words = "Some random words in a text string" >>> max([(len(w), w) for w in words.split()], key=lambda x:x[0])[1]