2017.12.20

1.jieba加载词典:jieba.load_userdict(filename)#filename为文件路径
2.pd.read_excel('文件名',sheetname=k,header=0,encoding=utf-8),header可忽略,经常的用法是
pd.read_excel('文件名',sheetname=k)
3.iloc,loc的用法及区别:
iloc 索整型索引
loc 索引字符串索引
di.iloc[:,:2] :(前两列)【行,列】:先行后列
4.y = dict(zip(dic.iloc[:,0],dic.iloc[:,1])) ##把dic第一列和第二列打包生成字典dict.
5.i = re.findall(".*[\r\n\t]",t) ##通过正则匹配分段
6.TypeError: 'dict' object is not callable的解决
dict()是python的一个函数,但我又将dict自定义为一个python字典,在之后想调用dict()函数是会报出“TypeError: 'dict' object is not callable”的错误,只需将之前自定义的变量delete掉即可。
del (dict)。

你可能感兴趣的:(2017.12.20)