I have a List object like this ['tag1', 'tag2', 'tag3 tag3', ...]
How I can skip [, ], ' characters and get a string "tag1, tag2, tag3 tag3, ..."?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
if you have a list of strings you could do:
Note: you do not remove characters
[,],'. You’re concatenating elements of a list into a string. Original list will remain untouched. These characters serve for representing relevant types in python: lists and string, specifically.