Python3 簡單實現詞頻統計

Python3 統計單詞出現的行數 以 紅樓夢 的數據爲例,Python 實現:git with open('紅樓夢.txt', 'r', encoding='utf-8') as file: count = sum([1 for line in file if '賈寶玉' in line]) print(count) Linux 使用 grep :github $ gre
相關文章
相關標籤/搜索