A
repr(float(.0000000100))
Return value:
1e-08
Size: a a a
A
repr(float(.0000000100))
1e-08
A
A
import decimal
decimal.Decimal(0.0000000100)
1.0000000000000000209225608301284726753266340892878361046314239501953125E-8
A
A
import decimal
str(decimal.Decimal(0.0000000100) )
1.0000000000000000209225608301284726753266340892878361046314239501953125E-8
K
A
A
import decimal
f = 0.0000000100
str(decimal.Decimal(f))[len(f)]
TypeError: object of type 'float' has no len()
A
import decimal
f = 0.0000000100
len(f)
TypeError: object of type 'float' has no len()
K
print('hello world')
None
A
print('hello world')
None
K
A
A
A
A
K