Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!weretis.net!feeder4.news.weretis.net!ecngs!feeder2.ecngs.de!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.126 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.75; '*S*': 0.00; 'subject:Processing': 0.09; 'python?': 0.15; 'awk': 0.16; 'confused.': 0.16; 'nick': 0.16; 'workaround': 0.16; 'cc:addr:python-list': 0.16; 'looked': 0.16; 'wrote:': 0.18; 'dec': 0.22; 'header:In-Reply-To:1': 0.22; 'module': 0.26; 'all,': 0.28; "skip:' 10": 0.29; 'cc:addr:python.org': 0.29; 'modules,': 0.30; 'does': 0.32; 'tue,': 0.32; 'there': 0.33; 'yourself.': 0.34; 'something': 0.35; 'file': 0.36; 'similar': 0.36; 'cc:2**1': 0.36; 'but': 0.37; 'not,': 0.37; 'could': 0.37; "i'd": 0.39; 'skip:- 50': 0.39; 'quick': 0.61; '2011': 0.61; 'header:Received:6': 0.61; 'size.': 0.71; 'reply-to:no real name:2**0': 0.72; 'subject:Text': 0.73; 'header:Reply-to:1': 0.84; '-0800': 0.84; '10mb': 0.84; '0.00': 0.91 To: =?us-ascii?Q?=3D=3FUTF-8=3FB=3FSsOpcsO0bWU=3D=3F=3D?= From: Nick Dokos Subject: Re: Text Processing In-Reply-To: Message from =?us-ascii?Q?=3D=3FUTF-8=3FB=3FSsOpcsO0bWU=3D=3F?= =?us-ascii?Q?=3D?= of "Tue\, 20 Dec 2011 21\:03\:21 +0100." <20111220210321.77451e19@bouzin.lan> References: <209c2abf-dd56-4a7f-839b-fad92920d457@m7g2000vbc.googlegroups.com> <20111220210321.77451e19@bouzin.lan> Organization: HPCS X-Mailer: MH-E 8.3; nmh 1.3; GNU Emacs 24.0.90 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Date: Tue, 20 Dec 2011 16:04:45 -0500 Sender: nicholas.dokos@hp.com Cc: python-list@python.org X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 Precedence: list Reply-To: nicholas.dokos@hp.com List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 36 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1324418997 news.xs4all.nl 6989 [2001:888:2000:d::a6]:52037 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:17623 J=C3=A9r=C3=B4me wrote: > Tue, 20 Dec 2011 11:17:15 -0800 (PST) > Yigit Turgut a =C3=A9crit: >=20 > > Hi all, > >=20 > > I have a text file containing such data ; > >=20 > > A B C > > ------------------------------------------------------- > > -2.0100e-01 8.000e-02 8.000e-05 > > -2.0000e-01 0.000e+00 4.800e-04 > > -1.9900e-01 4.000e-02 1.600e-04 > >=20 > > But I only need Section B, and I need to change the notation to ; > >=20 > > 8.000e-02 =3D 0.08 > > 0.000e+00 =3D 0.00 > > 4.000e-02 =3D 0.04 > >=20 > > Text file is approximately 10MB in size. I looked around to see if > > there is a quick and dirty workaround but there are lots of modules, > > lots of options.. I am confused. > >=20 > > Which module is most suitable for this task ? >=20 > You could try to do it yourself. >=20 Does it have to be python? If not, I'd go with something similar to sed 1,2d foo.data | awk '{printf("%.2f\n", $2);}' Nick