Comment sélectionner l'élément le plus court d'une liste Python

strings = ["some", "example", "words", "that", "i", "am", "fond", "of"]

print min(strings, key=len) # prints "i"
Zany Zebra