1. ホーム
  2. python

[解決済み] return list.sort()」は、なぜリストではなくNoneを返すのですか?

2022-02-03 06:51:28

質問

を確認することができました。 findUniqueWords は、結果的にソートされた list . しかし、それはリストを返しません。なぜでしょうか?

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

解決方法は?

list.sort はその場でリストをソートします。つまり、新しいリストを返すわけではありません。ただ、次のように書きます。

newList.sort()
return newList