adjusted()
Return the adjusted exponent after shifting out the coefficient’s rightmost digits until only the lead digit remains: Decimal('321e+5').adjusted()
returns seven. Used for determining the position of the most significant digit with respect to the decimal point.
Please login to continue.