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

  • SEARCH
  • Home
  • 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 6846115
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T00:34:58+00:00 2026-05-27T00:34:58+00:00

I have a tuple in which one element is just a string and the

  • 0

I have a tuple in which one element is just a string and the other is a list (‘x’,[‘y’,’z’]), I want to output the tuple into a csv file with all of the different elements on the same row, but different blocks.

Here is what I have so far

 outputwriter=csv.writer(open('output.csv','wb'), delimiter=' ')
 for tup in in_tup:
    print (tup[0]+' '.join('%s' %x for x in tup[1]))
    outputwriter.writerow(tup[0]+' ' +' '.join('%s' %x for x in tup[1]))

when i first print the tuple the output is this

xxxx.com 164.44.xx.xx 164.44.xx.xx 164.44.xx.x

...

But when I output it to the csv I get all of the text in a signle block “A1” and so on. I tried a delimiter when I open the csv writer but it doesn’t work. Any thoughts

  • 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. Editorial Team
    Editorial Team
    2026-05-27T00:34:59+00:00Added an answer on May 27, 2026 at 12:34 am
    outputwriter = csv.writer(open('output.csv', 'w'), delimiter = ' ')
    for tup in in_tup:
        inputList = [tup[0]]
        inputList.extend(tup[1])
        outputwriter.writerow(inputList)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an (int * string) tuple which I want to covert into a
I have a function where I want to transform a list of floats into
I have the following tuple, which contains tuples: MY_TUPLE = ( ('A','Apple'), ('C','Carrot'), ('B','Banana'),
Say you have a tuple and want to generate a new tuple by applying
How can i have a tuple that has a list as a value. F.x.
how to convert a String type to a Int i have a tuple and
how to write a function from list to a tuple i have taken the
I have a situation where I want to create a mapping from a tuple
I have strings which look like this one: (8, 12.25), (13, 15), (16.75, 18.5)
I want make sql query which will insert values from one table to another

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.