Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a large list of lists like:

X = [['a','b','c','d','e','f'],['c','f','r'],['r','h','l','m'],['v'],['g','j']]

each inner list is a sentence and the members of these lists are actually the word of this sentences.I want to write this list in a file such that each sentence(inner list) is in a separate line in the file, and each line has a number corresponding to the placement of this inner list(sentence) in the large this. In the case above. I want the output to look like this:

1. a b c d e f
2. c f r
3. r h l m
4.v
5.g j

I need them to be written in this format in a "text" file. Can anyone suggest me a code for it in python? Thanks

share|improve this question

2 Answers

up vote 5 down vote accepted
with open('somefile.txt', 'w') as fp:
  for i, s in enumerate(X):
    print >>fp, '%d. %s' % (i + 1, ' '.join(s))
share|improve this answer
1  
or fp.write("{row}. {sentence}\n".format(row=i, sentence=' '.join(s))) if you don't like the >> print syntax. – katrielalex Oct 29 '10 at 12:20
There is a slight problem with that, the counter starts with 2 always! – Hossein Oct 29 '10 at 16:58
print >>fp, '%d. %s' % (i, ' '.join(s)) i += 1 will do the job ;) – Hossein Oct 29 '10 at 17:00
with open('file.txt', 'w') as f:
    i=1
    for row in X:
        f.write('%d. %s'%(i, ' '.join(row)))
        i+=1
share|improve this answer
1  
You're missing the linebreaks. – Ignacio Vazquez-Abrams Oct 29 '10 at 12:03
enumerate is there for a reason. – katrielalex Oct 29 '10 at 12:18
I'm not sure that enumerate() will create generator object, so enumerate() can take a lot of memory/cpu for large lists. If enumerate() will create a generator, previous example can be preferable. – seriyPS Oct 29 '10 at 12:29
It's an easy thing to look up in the docs and/or test. enumerate: Return an enumerate object. – bstpierre Oct 29 '10 at 13:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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