溫馨提示×

python如何統(tǒng)計單詞個數(shù)

小億
1171
2023-11-17 11:16:16
欄目: 編程語言

可以使用Python的split()方法將字符串分割成單詞,并使用len()函數(shù)統(tǒng)計單詞個數(shù)。

例如,下面的代碼可以統(tǒng)計字符串s中單詞的個數(shù):

s = “Hello world! This is a sentence.” words = s.split() num_words = len(words) print(“單詞個數(shù):”, num_words) 輸出結(jié)果為: 單詞個數(shù): 7

0