python 文件路径 变量
时间: 2023-07-25 21:29:44 浏览: 99
解决TypeError: expected str, bytes or os.PathLike object, not int
在 Python 中,可以使用字符串变量来表示文件路径。例如,假设有一个变量 `path` 存储了文件路径,可以使用该变量来打开文件或执行其他文件操作。需要注意的是,不同的操作系统使用的路径分隔符可能不同,可以使用 `os.path.join()` 函数来构建跨平台兼容的路径。例如:
```python
import os
path = "/home/user/documents/file.txt"
with open(path, "r") as f:
# do something with the file
# construct cross-platform path
path = os.path.join("home", "user", "documents", "file.txt")
```
阅读全文