How to remove characters from Python list?
Posted
by Anry
on Stack Overflow
See other posts from Stack Overflow
or by Anry
Published on 2010-06-16T17:24:49Z
Indexed on
2010/06/16
17:42 UTC
Read the original article
Hit count: 217
I have a LIST: ['tag1', 'tag2', 'tag3 tag3', ...]
How do I delete [
, ]
, '
. I want to get a string: "tag1, tag2, tag3 tag3, ..."
© Stack Overflow or respective owner