Discuss / Python / 哎呀,不好意思,一不小心又参考了别人的答案,因为自己实在想不到呀

哎呀,不好意思,一不小心又参考了别人的答案,因为自己实在想不到呀

Topic source
DIGITS = {'0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9}

def char2num(s):
    return DIGITS[s]
L=s.split('.')
le=len(L[1])
left=reduce(lambda x,y:x*10+y,map(char2num,L[0]))
right=reduce(lambda x,y:x*10+y,map(char2num,L[1]))
return left+10**-le*right

  • 1

Reply