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遍历输出列表中最长的单词的详细内容,更多请关注Gxlcms其它相关文章!
查看更多关于python遍历输出列表中最长的单词的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did78782