Google Colaboratory:从Google驱动程序读取数据

时间:2018-11-23 08:34:48

标签: google-colaboratory

我只想从Google驱动程序中读取a.txt,当我使用!cat命令时,我可以看到a.txt的输出消息,但是当我使用{{1 }}命令,由于以下原因而发生错误:pd.read_table ()

你能帮我吗?

enter image description here

1 个答案:

答案 0 :(得分:2)

您不需要在字符串中使用反斜杠\来转义空格。如果这样做,则实际上是在字符串中添加反斜杠,从而导致路径无效。

所以重写:

prior=pd.read_table('/content/gdrive/My Drive/test/a.txt')