This seems like a pretty simple problem, but I\'m looking for a short and sweet way of doing it that is still understandable (this isn\'t code golf).
Given a list of
I'd use sorted(l, key=len)[0]
sorted(l, key=len)[0]