情感词典
情感分析_情感词典合集:链接: https://pan.baidu.com/s/1urqLnI1X-hWbH3Kq8QGmMg 提取码: bpjh
注:本人mac电脑,下载下来有一些文件因为编码格式看不了,发到苹果手机目前能看
import chardet
f = open(file, 'rb').read()
print(chardet.detect(f)) # 查看文件编码 {'encoding': 'GB2312', 'confidence': 0.99, 'language': 'Chinese'}
##########查看文件内容#############
data = open(file_path, 'rb').read().decode(dic['encoding'],errors='ignore')