比如文件名为:’some.file.xlsx’,把xlsx提取出来 s = 'some.file.xlsx'# 第一种:利用.分隔,取最后一个元素ext = s.split('.')[-1]# 第二种:使用endswith()函数s.endswith('.xlsx') # 返回boolif s.endswith('.xlsx'): pass