Python中string.endswith()函数的基本使用
Python中string.endswith()函数的基本使用函数:endswith()作用:判断字符串是否以指定字符或子字符串结尾,常用于判断文件类型.语法:string.endswith(str, beg=[0,end=len(string)])或者写成:string[beg:end].endswith(str)参数说明:string: 被检测的字符串str: 指定的字符或者子字符串(可以使用元组,会逐一匹配)beg: 设置字符串检测的起始位置(可选,从左数起)end: