Discuss / Python / 第三

第三

Topic source

frantumaglia

#1 Created at ... [Delete] [Delete and Lock User]
def str2float(s):    L = s.split('.')    return int(L[0])+int(L[1])/10**len(L[1])

  • 1

Reply