Python | 如何强制除法运算为浮点数? 除数一直舍入为0?

Until the python version 2, the division of two integers was always being rounded down to 0.

在python版本2之前, 两个整数除法总是四舍五入为0

Consider the below example, being executed in python version 2.7,

考虑下面的示例,该示例在python版本2.7中执行,

result = 4/5
print(result)

Output

输出量

0

Other than overcoming the python version 2.7 which is mostly outdated and not a recommended version, the above-mentioned issue can be resolved while we update the python version to 3.X

除了克服python版本2.7(大多数版本已过时,而不是推荐的版本)以外,在将python版本更新为3.X时,可以解决上述问题

result = 4/5
print(result)

Output

输出量

0.8

Python Consoles:

Python控制台:

Python 2.7.16 (default, Dec 13 2019, 18:00:32) 
[GCC 4.2.1 Compatible Apple LLVM 11.0.0 (clang-1100.0.32.4) (-macos10.15-objc-s on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> result = 4/5
>>> print(result)
0

Python 3.7.0 (v3.7.0:1bf9cc5093, Jun 26 2018, 23:26:24) 
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> result = 4/5
>>> print(result)
0.8


翻译自: https://www.includehelp.com/python/how-can-i-force-division-to-be-floating-point-division-keeps-rounding-down-to-0.aspx

### 浮点乘除法运算的详细步骤 #### 阶码处理 对于浮点数乘法,两个操作数的阶码部分会以补码或移码形式表示,在执行乘法时,这两个阶码将会相加[^2]。 对于浮点数除法,当计算两浮点数相除的结果时,被除数(分子)的阶码将减去除数(分母)的阶码。 #### 尾数处理 接着是尾数的操作。在进行乘法的时候,两个浮点数的尾数会被直接相乘;而在做除法时,则是用被除数的尾数去除以除数的尾数。 #### 结果规格化 完成上述操作之后得到的结果可能不是规范化形式。为了使最终结果成为标准的浮点数表达方式,需要对其进行规格化调整。这通常涉及到移动小数点位置并相应改变指数值来确保最高有效位为1(针对正数),除非该数值非常接近于零[^1]。 #### 舍入处理 最后一步是对所得结果实施舍入策略,以便适应有限精度存储的要求。常见的舍入方法有向最近偶数舍入、截断等不同模式,具体取决于硬件实现和编程环境设置。 ```python def float_multiply(x_exponent, x_mantissa, y_exponent, y_mantissa): result_exponent = x_exponent + y_exponent result_mantissa = x_mantissa * y_mantissa # 假设这里进行了必要的规格化与舍入过程... return (result_exponent, result_mantissa) def float_divide(dividend_exp, dividend_man, divisor_exp, divisor_man): result_exponent = dividend_exp - divisor_exp result_mantissa = dividend_man / divisor_man # 同样假设这里有规格化及舍入的过程... return (result_exponent, result_mantissa) ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值