Every line of 'python decimal to ascii' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.
114 def decimal2text(value, places=2, 115 int_units=(('', '', ''), 'm'), 116 exp_units=(('', '', ''), 'm')): 117 value = decimal.Decimal(value) 118 q = decimal.Decimal(10) ** -places 119 120 integral, exp = str(value.quantize(q)).split('.') 121 return u'{} {}'.format( 122 num2text(int(integral), int_units), 123 num2text(int(exp), exp_units))