Python里Pure pathsPurePosixPathPureWindowsPath的区别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python里Pure pathsPurePosixPathPureWindowsPath的区别相关的知识,希望对你有一定的参考价值。
Python是跨平台的,可以在不同的操作系统上运行。但是不同系统上路径 的表示方式是不一样的。
例如windows上路径使用“\”分割子目录和父目录,linux上是使用“/”来分割。这就是PurePosixPath、PureWindowsPath出现的原因。
PureWindowsPath:这种路径风格是在windows系统下使用的;
PurePosixPath:这种路径风格是在非windows系统下使用的;
Pure paths:是PureWindowsPath和PurePosixPath的父类;
以上是关于Python里Pure pathsPurePosixPathPureWindowsPath的区别的主要内容,如果未能解决你的问题,请参考以下文章
pycharm无法新建django项目,报错timed out,需先建立pure项目,进入后建立django项目,最后调整目录层级。