当前位置: 首页>>代码示例>>Python>>正文


Python decimal.ROUND_HALF_DOWN属性代码示例

本文整理汇总了Python中decimal.ROUND_HALF_DOWN属性的典型用法代码示例。如果您正苦于以下问题:Python decimal.ROUND_HALF_DOWN属性的具体用法?Python decimal.ROUND_HALF_DOWN怎么用?Python decimal.ROUND_HALF_DOWN使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在decimal的用法示例。


在下文中一共展示了decimal.ROUND_HALF_DOWN属性的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: round_value

# 需要导入模块: import decimal [as 别名]
# 或者: from decimal import ROUND_HALF_DOWN [as 别名]
def round_value(value, decimalplaces=0):
    """Rounding function.

    Args:
        value (float): Number to round.
        decimalplaces (int): Number of decimal places of float to represent rounded value.

    Returns:
        rounded (int/float): Rounded value.
    """

    # Rounds to nearest integer (half values are rounded downwards)
    if decimalplaces == 0:
        rounded = int(d.Decimal(value).quantize(d.Decimal('1'), rounding=d.ROUND_HALF_DOWN))

    # Rounds down to nearest float represented by number of decimal places
    else:
        precision = '1.{places}'.format(places='0' * decimalplaces)
        rounded = float(d.Decimal(value).quantize(d.Decimal(precision), rounding=d.ROUND_FLOOR))

    return rounded 
开发者ID:gprMax,项目名称:gprMax,代码行数:23,代码来源:utilities.py

示例2: create_order

# 需要导入模块: import decimal [as 别名]
# 或者: from decimal import ROUND_HALF_DOWN [as 别名]
def create_order(ordered_items, total, payment_type):
        """create a modified order"""
        order_dct = {
            "items": ordered_items,
            "payment_type":payment_type,
            "total": total}
        
        tax_scale = int((Order.taxrate * 100) + 10000)
        subtotal = int(decimal.Decimal((total * 100) 
                / tax_scale).quantize(
                decimal.Decimal('0.01'),
                    rounding=decimal.ROUND_HALF_DOWN) * 100)

        tax = total - subtotal
        order_dct["subtotal"] = subtotal
        order_dct["tax"] = tax
        return order_dct 
开发者ID:BnetButter,项目名称:hwk-mirror,代码行数:19,代码来源:pos_client.py

示例3: _calc_ratio

# 需要导入模块: import decimal [as 别名]
# 或者: from decimal import ROUND_HALF_DOWN [as 别名]
def _calc_ratio(part, whole):
    """Calculate ratio

    Returns int
    """
    return int((part / whole * 100).quantize(
        decimal.Decimal('1'), rounding=decimal.ROUND_HALF_DOWN)) 
开发者ID:LuciferJack,项目名称:python-mysql-pool,代码行数:9,代码来源:balancing.py

示例4: _subtotal

# 需要导入模块: import decimal [as 别名]
# 或者: from decimal import ROUND_HALF_DOWN [as 别名]
def _subtotal(self)->int:
        tax_scale = int((self.taxrate * 100) + 10000)
        result = Decimal((self.total * 100) 
                / tax_scale).quantize(
                    Decimal('0.01'),
                        rounding=ROUND_HALF_DOWN)
        return int(result * 100) 
开发者ID:BnetButter,项目名称:hwk-mirror,代码行数:9,代码来源:metaclass.py

示例5: round_int

# 需要导入模块: import decimal [as 别名]
# 或者: from decimal import ROUND_HALF_DOWN [as 别名]
def round_int(dec):
    """Round float to nearest int using expected rounding."""

    return int(decimal.Decimal(dec).quantize(decimal.Decimal('0'), decimal.ROUND_HALF_DOWN)) 
开发者ID:facelessuser,项目名称:ColorHelper,代码行数:6,代码来源:rgba.py

示例6: test_round_modify_method

# 需要导入模块: import decimal [as 别名]
# 或者: from decimal import ROUND_HALF_DOWN [as 别名]
def test_round_modify_method(self):
        assert round_value(3.5, rounding_method=ROUND_HALF_DOWN) == 3.0 
开发者ID:DataDog,项目名称:integrations-core,代码行数:4,代码来源:test_utils.py


注:本文中的decimal.ROUND_HALF_DOWN属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。