高階函數03——利用map和reduce編寫一個str2float函數, 把字符串'123.456'轉換成浮點數123.456

利用map和reduce編寫一個str2float函數,
把字符串'123.456'轉換成浮點數123.456:
from functools import reduce


def str2float(s):
    def fn(x, y):
        return x * 10 + y

    # 得到字符串中.的索引  123.456
    n = s.index('.')
    # 根據.的位置將字符串切片爲兩段
    s1 = list(map(int, [x for x in s[: n]]))
    s2 = list(map(int, [x for x in s[n + 1:]]))
    # m ** n表示m的n次方
    return reduce(fn, s1) + reduce(fn, s2) / 10 ** len(s2)


print('str2float(\'123.456\') = ', str2float('123.456'))
if abs(str2float('123.456') - 123.456) < 0.00001:
    print('successful')
else:
    print('error')

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章