python 分离文件名和路径 以及 分离文件名和后缀
作者:互联网
分离路径和文件名:
os.path.split()
区分文件的名字和后缀:
os.path.splitext()
import os file_path = "D:/test/test.py" (filepath, tempfilename) = os.path.split(file_path) (filename, extension) = os.path.splitext(tempfilename)
标签:文件名,python,splitext,分离,tempfilename,file,path,os 来源: https://www.cnblogs.com/long5683/p/12879469.html