Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 44539
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T15:40:05+00:00 2026-05-10T15:40:05+00:00

Along the lines of my previous question , how can i join a list

  • 0

Along the lines of my previous question, how can i join a list of strings into a string such that values get quoted cleanly. Something like:

['a', 'one 'two' three', 'foo, bar', '''both'''''] 

into:

a, 'one 'two' three', 'foo, bar', 'both\''' 

I suspect that the csv module will come into play here, but i’m not sure how to get the output I want.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T15:40:05+00:00Added an answer on May 10, 2026 at 3:40 pm

    Using the csv module you can do that way:

    import csv writer = csv.writer(open('some.csv', 'wb')) writer.writerow(the_list) 

    If you need a string just use StringIO instance as a file:

    f = StringIO.StringIO() writer = csv.writer(f) writer.writerow(the_list) print f.getvalue() 

    The output: a,'one ''two'' three','foo, bar','both''''

    csv will write in a way it can read back later. You can fine-tune its output by defining a dialect, just set quotechar, escapechar, etc, as needed:

    class SomeDialect(csv.excel):     delimiter = ','     quotechar = '''     escapechar = '\\'     doublequote = False     lineterminator = '\n'     quoting = csv.QUOTE_MINIMAL  f = cStringIO.StringIO() writer = csv.writer(f, dialect=SomeDialect) writer.writerow(the_list) print f.getvalue() 

    The output: a,one \'two\' three,'foo, bar',both\''

    The same dialect can be used with csv module to read the string back later to a list.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Along the lines of my previous question, How do I convert unicode characters to
This question is along the lines of HTML table horizontal spacing We have an
So i have something along the lines of private ObservableCollection<ViewModel> _internal; public ObservableCollection<ViewModel> BoundInternal{get;set};
I have a range of similar pages that have a URL along the lines
Say I have something along the lines of: int main() { const char* someString
I often read articles saying something along the lines of chmod 777 is bad!
I'm trying to use something along the lines of unexpand -t 4 *.php but
I have a page using something along the lines of <meta http-equiv=refresh content=0;url=http://example.com/ />
I have a sentence structure along the lines of [word1]{word2} is going to the
I'm looking to find something along the lines of Checkstyle for Visual Studio. I've

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.