2015-12-10 76 views

回答

1

你假設打印返回它正在打印的字符串,這不是真的,它返回None(因爲返回類型是void)。你可以調用print來寫入stdout的副作用,而不是返回一個返回值。

words = "Hello, i am the 14 year old creator of this program".lower().split() 
print(words) 

創建由空格從一個字符串分割字符串的列表轉換從文字串爲小寫,然後打印列表的內容。

+0

謝謝!這正是我所需要的 – ComputingIsSoStressful

0

打印用於在控制檯中打印結果。你可以試試:

Sentence = "Hello, i am the 14 year old creator of this program" 
MySentence = Sentence.lower() 
print(MySentence) 
+0

非常感謝你......但我需要知道如何分割句子 – ComputingIsSoStressful