摘要:
绝对路径(absolute path):从根开始找 eg:c:\file\01.txt 相对路径(relative path):相对当前文件内找 ../ # 当前文件的上一级 os.path.isabs(path): 判断path是否为一个绝对路径 返回True,即为绝对路径 返回False,即为相 阅读全文
摘要:
应用: 1.文件上传 2.保存log 系统函数: open(file, mode='r', buffering=None, encoding=None, errors=None, newline=None, closefd=True): file:文件名 mode:默认‘r’ 常用模式如下: r:r 阅读全文