D:/cunchu/cifar-10-python/cifar-10-batches-py/data_batch_1改成绝对路径
时间: 2023-05-31 07:03:38 浏览: 116
python文件绝对路径写法介绍(windows)
5星 · 资源好评率100%
把相对路径 "D:/cunchu/cifar-10-python/cifar-10-batches-py/data_batch_1" 转换为绝对路径的方法会因操作系统的不同而有所差异。以下是几种常见的方法:
Windows操作系统:
1. 在文件路径前面加上 "D:\",即:
D:\cunchu\cifar-10-python\cifar-10-batches-py\data_batch_1
2. 使用 os 模块中的 os.path.abspath() 方法,将相对路径转换为绝对路径,即:
import os
path = "D:/cunchu/cifar-10-python/cifar-10-batches-py/data_batch_1"
abs_path = os.path.abspath(path)
Linux操作系统:
1. 在文件路径前面加上 "/", 即:
/D/cunchu/cifar-10-python/cifar-10-batches-py/data_batch_1
2. 使用 os 模块中的 os.path.abspath() 方法,将相对路径转换为绝对路径,即:
import os
path = "/D/cunchu/cifar-10-python/cifar-10-batches-py/data_batch_1"
abs_path = os.path.abspath(path)
注意:在 Windows 操作系统中,路径分隔符为 "\",而在 Linux 操作系统中,路径分隔符为 "/"。在使用绝对路径时,应该根据操作系统选择正确的路径分隔符。
阅读全文