比如文件名为:’some.file.xlsx’,把xlsx提取出来

    1. s = 'some.file.xlsx'
    2. # 第一种:利用.分隔,取最后一个元素
    3. ext = s.split('.')[-1]
    4. # 第二种:使用endswith()函数
    5. s.endswith('.xlsx') # 返回bool
    6. if s.endswith('.xlsx'):
    7. pass