python下Windows和Linux路径问题

 

手把手教你自己写一个Python模块,并将其发布并安装到自己的Python环境中去

https://blog.csdn.net/coolcooljob/article/details/80082907

python导入自己的模块

https://blog.csdn.net/bai_and_hao_1314/article/details/84498231

 

Python中的路径操作

https://blog.csdn.net/u013008795/article/details/89742486

Python中路径操作

https://www.cnblogs.com/dianel/p/10073718.html

Python---查看安装路径

https://www.cnblogs.com/givemelove/p/8482142.html

python下Windows和Linux路径问题

https://blog.csdn.net/sinat_32152019/article/details/88633766

Windows下用反斜杠\,加上转义字符就变成了\\,如c:\\hello\\haha

linux下使用斜杠/,如usr/bin/hello/haha

使用python时无论win还是Linux都可以这样写

import os

print('c:', os.path.join('hello','haha'))
————————————————————————————————————————————————————————

python Windows和Linux路径表示问题

https://www.cnblogs.com/dayouzi/p/10207717.html

Windows下路径是用‘\\’表示也可以使用'/',但是Linux下路径都是‘/’表示。

因为python是跨平台的,有时候程序迁移会出现错误。

解决办法1 可全部使用‘/’表示

解决办法2 我们可以使用os.sep方法,他是一个变量,在Windows下,他等于‘\\’,在Linux下,他等于‘/’。

     os.path.join()方法是自带os.sep的。

你可能感兴趣的:(Python基本功)