Список длины майна Python Min
strings = ["some", "example", "words", "that", "i", "am", "fond", "of"]
print min(strings, key=len)
# prints "i"
Dentedghost
strings = ["some", "example", "words", "that", "i", "am", "fond", "of"]
print min(strings, key=len)
# prints "i"