почему так?
>>> from decimal import *
>>> ctx = getcontext()
>>> ctx.prec = 2
>>> ctx.create_decimal(1.48)
Decimal('1.5')
>>> ctx.prec = 3
>>> ctx.create_decimal(1.48)
Decimal('1.48')
может потому что ты Decimal из float получаешь?
Обсуждают сегодня