众所周知,OS是Operating System操作系统的简称,那python中的os.path.join()函数又有什么作用呢?

函数功能:连接两个或更多的路径名组件

下面让我们看几个例子来理解下细节吧:

1.如果各组件名首字母不包含’/’,则函数会自动加上

demo1

import os
Path1 = 'home'
Path2 = 'develop'
Path3 = 'code'
Path10 = Path1+Path2+Path3
Path20 = os.path.join(Path1, Path2, Path3)
print('Path10 = ', Path10)
print('Path20 = ', Path20)

输出结果

> Path10 = homedevelopcode
> Path20 = home\develop\code

 

 

 

详细看这个博客

https://blog.csdn.net/dx390609/article/details/108861778  

相关文章:

  • 2021-06-27
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-01
  • 2022-12-23
猜你喜欢
  • 2021-10-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-25
相关资源
相似解决方案