vote up 0 vote down star

Example strings:

uji708
uhodih
utus29
agamu4
azi340
ekon62

I need to change them into CSV list like this:

uji708,uhodih,utus29,  
agamu4,azi340,ekon62,

My code so far:

email = 'mail_list.txt'
handle = open(email)

for line in handle:
    try:
        email = line.split()[0].replace('\n', '')
        l = line.split()
        print '\n'.join((','.join(x) for x in zip(l[::3], l[1::3], l[2::3])))    
    except:
        print 'error'

How can I do this in Python?

flag

68% accept rate
5  
Posting your code right here is better than forcing everybody to check pastebin. Plus, your "0% accept rate" means you never accept any answer, so why should anybody bother answering you?! Go back over questions you asked in the past, do some accepts (click the checkmark under the best answer to each question), then edit this question to be self-contained (w/o needless off-site pointers!-), and then it may finally be worth answering this question (clarify it: do you want exactly 3 entries per output line, or what? what if the number of entries' not a multiple of 3?!). – Alex Martelli Nov 4 at 5:27
ok sorry im totoally new to stackoverflow. so i didn't know how to answer. im very sorry. i was chosen your answer. – paul Nov 4 at 7:14
thanks reply, actually im handling email list. can i use such like follow style? maillist = 'scrap_daum.txt' try: handle = open(maillist) except: exit(1) for line in handle: #currline += 1 valid = [] try: email = line.split(':')[0].replace('\n', '') except: exit(1) – paul Nov 4 at 7:19
hello i was update pastebin site i want to handle email list – paul Nov 4 at 7:33
elca.pastebin.com/d4556c585 here is updated site – paul Nov 4 at 7:34
show 1 more comment

2 Answers

vote up 1 vote down check

Use csv.writer:

import csv
import sys

writer = csv.csvwriter(sys.stdout)
writer.writerow(iterable_containing_my_strings)
link|flag
resolved! thanks a lot :) – paul Nov 6 at 2:16
iterable_containing_my_strings = open('mail_list.txt') – J.F. Sebastian Nov 8 at 22:08
vote up 0 vote down

Here is a very specific answer to a very specific question when you will clarify/generalize your question I may update my answer

s = """
uji708
uhodih
utus29
agamu4
azi340
ekon62
"""
l = s.split()
print '\n'.join((','.join(x) for x in zip(l[::3], l[1::3], l[2::3])))
link|flag
hello thanks for your reply.. can i use some other method? i was updated pastebin :) elca.pastebin.com/d4556c585 – paul Nov 4 at 7:34
why you are posting code there? it is irritating – Anonymous Nov 4 at 12:58
i was upload script in here. thanks in advance :) – paul Nov 4 at 15:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.