Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #39345 > unrolled thread

Re: working with csv module in python

Started byDave Angel <davea@davea.name>
First post2013-02-20 06:04 -0500
Last post2013-02-20 06:04 -0500
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  Re: working with csv module in python Dave Angel <davea@davea.name> - 2013-02-20 06:04 -0500

#39345 — Re: working with csv module in python

FromDave Angel <davea@davea.name>
Date2013-02-20 06:04 -0500
SubjectRe: working with csv module in python
Message-ID<mailman.2104.1361358263.2939.python-list@python.org>
On 02/20/2013 05:38 AM, inshu chauhan wrote:
> On Wed, Feb 20, 2013 at 11:26 AM, Roland Koebler <r.koebler@yahoo.de> wrote:
>
>>
>> <snip>
>>
>> If you only want to concat the files, I would use some shell-tools,
>> like "cat" on Linux or "copy" on Windows, so
>>
>> copy C:\Users\inshu.chauhan\Desktop\ForModel_600\*.arff
>> C:\Users\inshu.chauhan\Desktop\test2.arff
>>
>> should do it.
>>
>>   <snip>
>>
> Yes I just want to concat the files , not parse/mangle the files.  How can
> i simply read all files in a folder in my computer and write them into a
> single file ? just by 'printf ' is it possible ?
>
>
>

Reread Roland's message, quoted above for your convenience.

Not sure what you mean by printf.  Why would you use C to do it?

If you need to do it in Python, remember you can read a file with the 
read() method, and write one with the write() method.  They pay no 
attention to newlines, delimiters or anything else.  Just create the 
output file, then in a loop open the input files and loop through each 
(read doesn't necessarily get the whole thing in one pass)

You'll spend lots more energy on the mechanics of finding the files then 
on the copying.  But perhaps the shutil module will have some further 
shortcuts.

-- 
DaveA

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web