I have a rather large tuple which contains:
[('and', 44023), ('cx', 37711), ('is', 36777) .... ]
I just want to extract the first string delimited by the single quotes, so the output for the above tuple would be:
and
cx
is
How do I code this (with extensibilty built in to some degree)?