将一个字符串转换成一个整数,要求不能使用字符串转换整数的库函数。 数值为0或者字符串不是一个合法的数值则返回0。 # -*- coding:utf-8 -*- class Solution: def StrToInt(self, s): # write code here if len(s)==0 :return 0 #判断是否存在小数点 if '.' in s: s_int = s.split('.')[0] s_float = s.split('.')[1] ...