我正在使用我目前正在上课的IPython笔记本。我需要打开一个.txt文件,但我不确定如何写它的位置。当我打开IPython笔记本时,有一个名为学生的文件夹和其他以讲座命名的文件夹。我需要的文件是在讲座3的文件夹中。我的作业是在学生名单中以我的名字命名的文件夹。夹。那我该怎么写?我试过了
archivo=open('lecture_3/data/sunspots.txt')
print archivo.read()
archivo.close()
但我得到了#34; IOERROR:没有这样的文件或目录"
为了清楚地了解我班级的IPython笔记本的结构,这里是基本结构。
-Students
--My_name
---my_homeworks
----this_particular_homework (this is where I need to read the .txt file)
-Lecture_1
-Lecture_2
-Lecture_3
--data (this is where the .txt file is)
-Lecture_4 and so on
另外,如何确保.txt文件存在?我无法从IPython中看到它。
我对IPython很新,所以对任何错误道歉。