Sentence = print("Hello, i am the 14 year old creator of this program")
MySentence = (Sentence.lower())
NoneType」對象有沒有屬性‘低’
我希望它是真的基本的,我只想把這個句子變成一個單詞列表。
Sentence = print("Hello, i am the 14 year old creator of this program")
MySentence = (Sentence.lower())
NoneType」對象有沒有屬性‘低’
我希望它是真的基本的,我只想把這個句子變成一個單詞列表。
你假設打印返回它正在打印的字符串,這不是真的,它返回None(因爲返回類型是void)。你可以調用print來寫入stdout的副作用,而不是返回一個返回值。
words = "Hello, i am the 14 year old creator of this program".lower().split()
print(words)
創建由空格從一個字符串分割字符串的列表轉換從文字串爲小寫,然後打印列表的內容。
打印用於在控制檯中打印結果。你可以試試:
Sentence = "Hello, i am the 14 year old creator of this program"
MySentence = Sentence.lower()
print(MySentence)
非常感謝你......但我需要知道如何分割句子 – ComputingIsSoStressful
謝謝!這正是我所需要的 – ComputingIsSoStressful