Bunun findUniqueWords
bir sıralama ile sonuçlandığını doğrulayabildim list
. Ancak listeyi döndürmez. Neden?
def findUniqueWords(theList):
newList = []
words = []
# Read a line at a time
for item in theList:
# Remove any punctuation from the line
cleaned = cleanUp(item)
# Split the line into separate words
words = cleaned.split()
# Evaluate each word
for word in words:
# Count each unique word
if word not in newList:
newList.append(word)
answer = newList.sort()
return answer
theSet= set(theList)
Ve işiniz bitti, sadece listeye geri atmanız gerekiyor: theList = list(theSet)
Tamam. Kolay.
theSet' into a sorted list with
Runlevel0'ın söylediklerine ekleme (ki bu iyi bir fikirdir): Sıralı (set) `i dönüştürebilirsiniz .