如何在jupyter notebook里面定义txt文件的路径
时间: 2023-09-02 16:05:35 浏览: 246
在jupyter notebook中调用.ipynb文件方式
你可以使用相对或绝对路径来定义txt文件的路径。如果txt文件与你的jupyter notebook在同一个目录下,你可以使用相对路径来定义文件路径,例如:
```
with open('example.txt', 'r') as f:
```
如果txt文件不在同一目录中,你可以使用绝对路径来定义文件路径,例如:
```
with open('/Users/username/Documents/example.txt', 'r') as f:
```
其中,/Users/username/Documents/是txt文件所在的文件夹的绝对路径。
阅读全文