up vote 1 down vote favorite
share [g+] share [fb]

I've just been asked to come up with a script to find files with a certain filename length. I've decided to try out Python for the first time for this task as I've always wanted to learn it.

I've got the script to find the files and append them to a text file but it does not write a line break for each new entry. Is there a way to do this as the current output is almost unreadable?

link|improve this question
feedback

2 Answers

up vote 6 down vote accepted

You just need to explicitly append a '\n' each time you want a line break -- if you're appending to the output file in text mode, this will expand to the proper line separation where needed (e.g. Windows). (You could use os.linesep instead, if you had to output in binary mode for some reason, but that's a pretty unusual use case -- normally, text mode and \n are much better).

link|improve this answer
This worked perfectly. Sorry if this seemed easy but as I stated this is my first time trying to do something like this. – Dynamo Nov 17 '09 at 21:46
1  
@Dynamo, sure, we've all been beginners at some point!-) – Alex Martelli Nov 17 '09 at 21:49
Well, I'm not supposed to be a Python beginer, and discover os.linesep with your answer. – e-satis Nov 17 '09 at 22:15
feedback

I am wondering why you don't have a line break when you print. an example.

>>> import os
>>> for files in os.listdir("."):
...  if os.path.isfile(files):
...   print "file: ",files," length: ",len(files)
...
file:  test1  length:  5
file:  shell.sh  length:  8
file:  test.txt  length:  8
link|improve this answer
There is a line break when I use the print command in the console but when I write to the text file it was not showing up. That's part of the reason I was confused as the console did not require me to use \n to create the line break. – Dynamo Nov 18 '09 at 20:09
yes, if you are using write() method, you need to append "\n" – ghostdog74 Nov 18 '09 at 23:27
feedback

Your Answer

 
or
required, but never shown

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