`
import pandas as pd
import numpy as np
import re
from collections import Counter
with open ("/home/baba/txt/1.txt",'r',encoding='gbk') as f:
words=f.read().lower()
rule=re.compile(r'w+')
words=re.findall(rule,words)
counter_words=Counter(words)
common_words=counter_words.most_common(10)
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。