Longest item
Takes any number of iterable objects or objects with a length property and returns the longest one.
- Use
max()
withlen()
as thekey
to return the item with the greatest length. - If multiple items have the same length, the first one will be returned.