Suppose I have a tuple in a list like this:
>>> t = [("asdf", )]
I know that the list always contains one 1-tuple. Currently I do this:
>>> dummy, = t
>>> value, = dummy
>>> value
'asdf'
Is there a shorter and more elegant way to do this?
|
|
|
|||||||||
|
|
Try
It's better than |
|||||||
|
|
Try
I don't think there is a clean way to go about it.
I liked Lior's idea that unpacking the list and tuple contains an assert.
|
|||
|
|