标签: python string
示例:
0.28 -> 2
0.1234 -> 4
0.01345000 -> 5
我的答案:
len(str(k)[str(k).index('.')+1:])
它可以工作,但是也很丑陋。还有pythonic吗?