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教學############################################## ####