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
-- http://mail.python.org/mailman/listinfo/python-list
