Answers for "python get shortest string in list"

1

get longest shortest word in list python

words = ["alpha","omega","up","down","over","under","purple","red","blue","green"]

#GET LONGEST WORD
max(words, key=len)
>>> 'purple'

#GET SHORTEST WORD
min(words, key=len)
>>> 'up'
Posted by: Guest on May-01-2021
0

python min length list of strings

strings = ["some", "example", "words", "that", "i", "am", "fond", "of"]
print min(strings, key=len) 
# prints "i"
Posted by: Guest on February-11-2020
0

how to find the shortest word in a list python

def findShortest(lst):
    length = len(lst)
    short = len(lst[0])
    ret = 0
    for x in range(1, length):
        if len(lst[x]) < short:
            short = lst[x]
            ret = x

    return x # return the index of the shortest sentence in the list
Posted by: Guest on April-24-2021

Code answers related to "python get shortest string in list"

Browse Popular Code Answers by Language