Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #54365
| From | Dave Angel <davea@davea.name> |
|---|---|
| Subject | Re: Remove \n, " " from tuple. |
| Date | 2013-09-18 09:03 +0000 |
| References | <CAAZP3kmUnKe2BnSK2vkXijjuYiQ3ZHFUY=6A9T1iUD7z1baSNw@mail.gmail.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.111.1379495030.18130.python-list@python.org> (permalink) |
On 18/9/2013 01:12, Venkat Addala wrote:
> Hi all,
>
> I have a tuple in this format, which is retrived using MySQLdb, now i want
> to remove \n and extra spaces in this.
>
> 13L, 'ssDsC', 'CEs5s1, DsC', 'srylscetsmight\nghtscetylsse', '3', '3q25.1',
> 151531861L, 151546276L, '+', '1 kjafhkfhlad\fdfdsdf ghtscetylsse \ncontends
> the sctivity of dsfdk srylsmine N-scetyltrsnsfersse thst scts ss s cstslyst
> inbiotrsnsformstion fghjfg for srylsmine snd bvhghbh smine csrcinogens.
> Bgskjdg in ssDsC dfkdkdf in bresst snd prostrste csncer.', '', 'Msdhurs
> \nsgdfgssssvslingegowds', dstetime.dste(2013, 6, 14), None
>
A tuple is immutable, so it cannot be done.
However, you can create a new tuple. Easiest way is probably to convert
it to a list, process any strings in the list, and convert it back.
def convert(mylist):
res = []
for item in mylist:
if isinstance(item, str):
item = ............ to be filled in
res.append(item)
return res
mytuple = .....
temp = list(mytuple)
mytuple = tuple(convert(temp))
--
DaveA
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Remove \n, " " from tuple. Dave Angel <davea@davea.name> - 2013-09-18 09:03 +0000
csiph-web