首頁  >  文章  >  後端開發  >  python遍歷輸出清單中最長的單字

python遍歷輸出清單中最長的單字

王林
王林原創
2020-05-10 09:35:3610423瀏覽

python遍歷輸出清單中最長的單字

python遍歷輸出清單中最長的單字

具體程式碼:

word_len_list = [len(word) for word in list]
max_word_len = max(word_len_list)
for word in list:
    if len(word) == max_word_len:
            #print(word)
        list = []

推薦教學:python教學

############################################## ####

以上是python遍歷輸出清單中最長的單字的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn