智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=09b2a6b63e829ef00c112d80fe78d1df

这里用到了os.path.splitext()和os.path.split()。
 
函数 作用 返回值
os.path.splitext() 分割文件名和扩展名 元组
os.path.split() 分割路径和文件名 元组
例子:
 
import os
 
url = "http://file.iqilu.com/custom/new/v2016/images/logo.png"
 
(file, ext) = os.path.splitext(url)
print(file)
print(ext)
 
(path, filename) = os.path.split(url)
print(filename)
print(path)
 
 
————————————————
我们的python技术交流群:941108876
智一面的面试题提供python的测试题
使用地址:http://www.gtalent.cn/exam/interview?token=c7dcd205a4fdab0d6e8ca200b31b3489