I've got:
words = ['hello', 'world', 'you', 'look', 'nice']
I want to have:
'"hello", "world", "you", "look", "nice"'
What's the easiest way to do this with Python?
>>> words = ['hello', 'world', 'you', 'look', 'nice']
>>> ', '.join('"{0}"'.format(w) for w in words)
'"hello", "world", "you", "look", "nice"'