手机
当前位置:查字典教程网 >脚本专栏 >python >Python字符串转换成浮点数函数分享
Python字符串转换成浮点数函数分享
摘要:利用map和reduce编写一个str2float函数,把字符串'123.456'转换成浮点数123.456fromfunctoolsimp...

利用map和reduce编写一个str2float函数,把字符串'123.456'转换成浮点数123.456

from functools import reduce def str2float(s): return reduce(lambda x,y:x+int2dec(y),map(str2int,s.split('.'))) def char2num(s): return {'0':0,'1':1,'2':2,'3':3,'4':4,'5':5,'6':6,'7':7,'8':8,'9':9}[s] def str2int(s): return reduce(lambda x,y:x*10+y,map(char2num,s)) def intLen(i): return len('%d'%i) def int2dec(i): return i/(10**intLen(i)) print(str2float('123.456'))

以上就是本代码的全部内容了,希望对大家学习Python能够有所帮助。

【Python字符串转换成浮点数函数分享】相关文章:

python时间整形转标准格式的示例分享

python实现网页链接提取的方法分享

python字符串加密解密的三种方法分享(base64 win32com)

python操作MySQL数据库的方法分享

python 中文字符串的处理实现代码

python中将阿拉伯数字转换成中文的实现代码

Python 字符串操作实现代码(截取/替换/查找/分割)

Python字符转换

python算法学习之计数排序实例

python list转dict示例分享

精品推荐
分类导航