'Round Down and Round Up float to negative decimals point in python

I'm looking for something to round up and round down at 1,2, and -1 decimal points in python, I have written some logic through it I am able to get the right values for +ve points but still looking round down -ve values.

my code is as -:

import decimal

outcome = '2156.24611496733'
rounding="Alwayes Down" 
decimal_place = -1

#   for positive values
if rounding == "Alwayes Up":
    decimal.getcontext().rounding = decimal.ROUND_UP

elif rounding == "Alwayes Down":
    decimal.getcontext().rounding = decimal.ROUND_DOWN

#   for negative values
if rounding == "Alwayes Down":
    print(round(float(outcome), decimal_place))

rounding_string = "1." + "0"*int(decimal_place)
decimal_outcome = decimal.Decimal(str(outcome)).quantize(decimal.Decimal(rounding_string))

print(decimal_outcome)

Table value is like - enter image description here

I am expecting values like

enter image description here



Solution 1:[1]

This is the complete solution that meets my matrix.

import decimal

outcome = '622222.545454545'
rounding="Alwayes Up" 
decimal_place = -1

#   for positive values
if rounding == "Alwayes Up":
    decimal.getcontext().rounding = decimal.ROUND_UP

elif rounding == "Alwayes Down":
    decimal.getcontext().rounding = decimal.ROUND_DOWN
    
rounding_string = "1." + "0"*int(decimal_place)
decimal_outcome = decimal.Decimal(str(outcome)).quantize(decimal.Decimal(rounding_string))

print(decimal_outcome)

# for negative values
if rounding == "Alwayes Up":
    print(round(float(outcome), decimal_place))

elif rounding == "Alwayes Up":
    decimal.getcontext().rounding = decimal.ROUND_UP
    rounding_string = "1." + "0"*int(decimal_place)
    decimal_outcome = decimal.Decimal(str(outcome)).quantize(decimal.Decimal(rounding_string))
    print(float(decimal_outcome))

Solution 2:[2]

You can use chrome debugger and flipper

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 radhey_mishra
Solution 2 Mostafa Emami