python怎么判断字符串可以转换浮点数

2025-05-04 21:34:48

1、raw_input()默认接受的是字符串,而后边需要的数字,所以就需要进行类型转换。

python怎么判断字符串可以转换浮点数

2、rom functools import reducedef str2float(s): def f(s): return {&#泌驾台佐39;0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9, '.': '.'}[s] def g(x, y): return x*10 + y

python怎么判断字符串可以转换浮点数

3、pos = s.find('.')

4、 front = reduce(g,map(f,s[0:pos]))

python怎么判断字符串可以转换浮点数

5、 rear = reduce(g,map(f,s[pos+1:]))/10**(len(s)-pos-1)return front+rear

python怎么判断字符串可以转换浮点数

6、print('str2float(\'123.456\') =', str2float('123.456'))

python怎么判断字符串可以转换浮点数
声明:本网站引用、摘录或转载内容仅供网站访问者交流或参考,不代表本站立场,如存在版权或非法内容,请联系站长删除,联系邮箱:site.kefu@qq.com。
猜你喜欢