I\'ve got:
words = [\'hello\', \'world\', \'you\', \'look\', \'nice\']
I want to have:
\'\"hello\", \"world\", \"you\", \"l
You can try this :
str(words)[1:-1]