Python index()方法:检测字符串中是否包含某子串 同find() 方法类似,index() 方法也可以用于检索是否包含指定的字符串,不同之处在于,当指定的字符串不存在时,index() 方法会抛出异常。 index() 方法的语法格式如下: str.index(sub[,start[,end]]) 此格式中各参数的含义分别是: str:表示原字符串; sub:表示...
import os,sys,stat,xlrd path=r"C:\git" select = input("select:") def del_file(path): ls = os.listdir(path) for i in ls: c_path = os.path.join(path, i) if os.path.isdir(c_path): del_file(c_path) elif os.path.splitext(c_path)[1] == '.xlsx' and r"~$" not in r...