任何人都可以幫助我使用映射器函數和簡化器函數來查找文本文件中最小的單詞嗎?映射器在文本文件中查找最小單詞的函數
import sys #importing from the system
smallest = None
for line in sys.stdin: #taking input from the system
line = line.strip() #leaving the unwanted whitespaces
words = line.split("\t") #spliting the words with delimiter TAB
smallest= min([len(word) for word in words]) #finding the smallest word
print ('%s' % (smallest)) #printing the snallest word
所以有什麼問題? –
請顯示一些輸入示例 –
因此,您甚至不打印最小的單詞。相反,你正在打印最短的單詞的長度。 – Cuber