可以使用split()方法將字符串分割成單詞,并使用len()函數統計單詞的個數。例如:
string = "Hello, how are you?"
words = string.split()
word_count = len(words)
print(word_count)
輸出結果為:
4
另外,如果需要統計字符串中特定單詞的個數,可以使用count()方法。例如:
string = "Hello, how are you?"
word = "you"
word_count = string.count(word)
print(word_count)
輸出結果為:
1