[Tutor] Re: How to remove a newline character

Charles 'MoHawkeman' Nichols cnichol4@columbus.rr.com
Sat, 6 Apr 2002 16:56:53 -0500


import re
MyList=['272580\n', '23232432\n']

for i in MyList:
    re.sub('\n','',str(i))

----- Original Message -----
From: "A" <printers@sendme.cz>
To: <python-help@python.org>; <activepython@listserv.ActiveState.com>;
<tutor@python.org>
Sent: Saturday, April 06, 2002 3:31 PM
Subject: How to remove a newline character


> Hi,
> Can you please let me know  if it is possible to replace
> new line characters( '\n') in a list in one step?
>
> I have list like
>
> MyList=['272580\n', '23232432\n']
>
> and I would like to have
> ,MyList=['272580', '23232432']
>
> so I tried
> re.sub('\n','',MyList)
> but I received
> TypeError: expected string or buffer
>
> Your help would be appreciated
> Thanks.
> Ladislav
>
> I look forward to hearing from you soon.
>
> Best Regards,
> Ladislav Blazek( Mr.)
>
> BMA TRADING Ltd.
> email: export@sendme.cz
> email2: export@bmatrading.com
> Fax:/Tel +420 506 447921
> Tel:+420 506 447920, +420 602 849309
>
>
> _______________________________________________
> ActivePython mailing list
> ActivePython@listserv.ActiveState.com
> To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
>