nested tuple slice

Leeds, Mark mleeds at mlp.com
Tue Apr 12 17:53:26 EDT 2005


maybe list(tuple)[0:2])) will

get you what you

want  but I don't know how to

change it back to a tuple.

I'm just starting out but

I would be interested also.

 

                        mark

 

-----Original Message-----
From: python-list-bounces+mleeds=mlp.com at python.org
[mailto:python-list-bounces+mleeds=mlp.com at python.org] On Behalf Of
dimitri pater
Sent: Tuesday, April 12, 2005 5:49 PM
To: python-list at python.org
Subject: nested tuple slice

 

hello!

I want to change a nested tuple like:
tuple = (('goat', 90, 100), ('cat', 80, 80), ('platypus', 60, 800))
into:
tuple = (('goat', 90), ('cat', 80), ('platypus', 60))

in other words, slice the first elements of every index

Any ideas on how to do this in an elegant, pythonic way?

Best regards,
Dimitri




-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20050412/a5431f3d/attachment.html>


More information about the Python-list mailing list