python遍历输出列表中最长的单词
具体代码:
word_len_pst = [len(word) for word in pst]
max_word_len = max(word_len_pst)
for word in pst:
if len(word) == max_word_len:
#print(word)
pst = []
推荐教程:python教程
以上就是小编分享的关于python遍历输出列表中最长的单词的详细内容希望对大家有所帮助,更多有关python教程请关注环球青藤其它相关文章!