-1
我寫過這個功能。計算字符串中的字數?
# Function to count words in a string.
def word_count(string):
tokens = string.split()
n_tokens = len(tokens)
print (n_tokens)
# Test the code.
print(word_count("Hello World!"))
print(word_count("The quick brown fox jumped over the lazy dog."))
但輸出
2
None
9
None
,而不是僅僅
2
9
返回n_tokens – pawelty
您打印結果的功能,但它返回無既然你不從它返回任何東西 –
ive修復它。致敬:) –