os.path.join()函数:连接两个或更多的路径名组件
1.如果各组件名首字母不包含‘\’,则函数会自动加上
2.如果有一个组件是一个绝对路径,则在它之前的所有组件均会被舍弃
3.如果最后一个组件为空,则生成的路径以一个’\’分隔符结尾
Demo1
import os
Path1 = 'mg'
Path2 = 'test'
Path3 = 'code'
path_res = os.path.join(Path1, Path2, Path3)
print(path_res)
执行结果
mg\test\code
Demo2
import os
Path1 = 'mg'
Path2 = 'test'
Path3 = '\code'
path_res = os.path.join(Path1, Path2, Path3)
print(path_res)
执行结果
\code
Demo3
import os
Path1 = 'mg'
Path2 = 'test'
Path3 = ' '
path_res = os.path.join(Path1, Path2, Path3)
print(path_res)
执行结果
mg\test\