找不到OSError tsv

时间:2019-04-03 16:18:08

标签: python-3.x sentiment-analysis

我遇到此错误:
OSError:找不到\ C:\ Users \ u165127 \ Desktop \ Restaurant_Reviews.tsv。

我很困惑!

#import the libraries
import numpy as np
import pandas as pd
#import the dataset
import scipy as sp
data = sp.genfromtxt(r'\C:\Users\u165127\Desktop\Restaurant_Reviews.tsv',delimiter='\t',encoding='utf-8')

2 个答案:

答案 0 :(得分:0)

这意味着r'\C:\Users\u165127\Desktop\Restaurant_Reviews.tsv'指定的文件位置不存在。

您可以尝试:'C:\Users\u165127\Desktop\Restaurant_Reviews.tsv'

或者如果脚本从C:\Users\u165127\Desktop运行,只需尝试"./Restaurant_Reviews.tsv"

答案 1 :(得分:0)

def load_csv(Restaurant_Reviews):
    file = open(Restaurant_Review, 'r')
    text = file.read()
    file.close()
    return text

这正在运行,但我不明白其中的区别