欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

python遍历输出列表中最长的单词

程序员文章站 2022-04-03 12:57:24
...

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遍历输出列表中最长的单词的详细内容,更多请关注其它相关文章!

相关标签: python 列表