How would I get the longest item in the following list comprehension?
lc = [item.decode('utf-8') for l in srt_breakdown.values() for item in l]
Here is how I would get it's length:
max_length = max([len(item.decode('utf-8')) for l in srt_breakdown.values() for item in l]
How would I get the actual text of the max_length item?