记录中经常有%,百分数但参于自动计算时需换成小数 def huanbfh(self,s): if s.find('%'): qbfh = s.replace('%', '') d = float(qbfh) / 100 return str(d)