Python Min Longueur Liste des chaînes

strings = ["some", "example", "words", "that", "i", "am", "fond", "of"]
print min(strings, key=len) 
# prints "i"
Dentedghost