我是靠谱客的博主 笨笨鲜花,这篇文章主要介绍Python字符串转换成浮点数函数分享,现在分享给大家,希望可以做个参考。

利用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字符串转换成浮点数函数分享内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(196)

评论列表共有 0 条评论

立即
投稿
返回
顶部