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之玩转字符串(1)
如果对自然语言分类,有很多中分法,比如英语、法语、汉语等,这种分法是最常见的。在语言学里面,也有对语言的分类方法,比如什...
Python
2小时前 4 -
python基于phantomjs实现导入图片
基于的phantomjs的自动化,会出现1.flash不支持2.部分基于view的按钮点不到,部分按钮是基于flash的...
Python
9小时前 7 -
python中list列表的高级函数
在Python所有的数据结构中,list具有重要地位,并且非常的方便,这篇文章主要是讲解list列表的高级应用,基础知识...
Python
9小时前 3 -
浅谈Python 中整型对象的存储问题
在 python 整型对象所存储的位置是不同的, 有一些是一直存储在某个存储里面, 而其它的, 则在使用时开辟出空间.说...
Python
9小时前 4 -
python采用django框架实现支付宝即时到帐接口
因工作需要研究了支付宝即时到帐接口,并成功应用到网站上,把过程拿出来分享。即时到帐只是支付宝众多商家服务中的一个,表示客...
Python
9小时前 3
最新文章
- 跟老齐学Python之玩转字符串(1) 2小时前
- python基于phantomjs实现导入图片 9小时前
- python中list列表的高级函数 9小时前
- 浅谈Python 中整型对象的存储问题 9小时前
- python采用django框架实现支付宝即时到帐接口 9小时前
- Python数据类型详解(四)字典:dict 9小时前
- Windows下Eclipse+PyDev配置Python+PyQt4开发环境 9小时前
- 详解Python函数作用域的LEGB顺序 9小时前
- Win7下搭建python开发环境图文教程(安装Python、pip、解释器) 9小时前
- Python编写电话薄实现增删改查功能 10小时前