迹忆客 专注技术分享

当前位置:主页 > 学无止境 > 编程语言 > Python >

在 Python 中计算两个数字之间的百分比

作者:迹忆客 最近更新:2022/12/05 浏览次数:

要计算两个数字之间的百分比,请将一个数字除以另一个数字,然后将结果乘以 100,例如 (30 / 75) * 100。这显示第一个数字占第二个数字的百分比。 在示例中,3075 的 **40%**。

def is_what_percent_of(num_a, num_b):
    return (num_a / num_b) * 100


print(is_what_percent_of(30, 75))  # 👉️ 40.0
print(is_what_percent_of(20, 75))  # 👉️ 26.6666...
print(round(is_what_percent_of(20, 75), 2))  # 👉️ 26.67

# --------------------------------------------------


def get_percentage_increase(num_a, num_b):
    return ((num_a - num_b) / num_b) * 100


print(get_percentage_increase(50, 30))  # 👉️ 66.6666...
print(get_percentage_increase(50, 100))  # 👉️ -50.0

# --------------------------------------------------

def get_percentage_difference(num_a, num_b):
    # 👇️ use abs() function to always get positive number
    return (abs(num_a - num_b) / num_b) * 100


print(get_percentage_difference(50, 30))  # 👉️ 66.6666...
print(get_percentage_difference(50, 100))  # 👉️ 50.0

Python 中计算两个数字之间的百分比

第一个函数接受 2 个数字并返回第一个数字占第二个数字的百分比。

例如,25 / 50 * 100 表示 2550 的 **50%**。

print((25 / 50) * 100) # 👉️ 50.0

计算两个数字之间的百分比时,我们可能需要四舍五入到小数点后的特定位数。

round 函数采用以下 2 个参数:

  • number 要四舍五入到小数点后 ndigits 精度的数字
  • ndigits 数字在操作后应具有的小数点后的位数(可选)
print(round((23 / 43) * 100, 2))  # 👉️ 53.49

round 函数返回四舍五入到小数点后 ndigits 精度的数字。

如果省略 ndigits,函数返回最接近的整数。

第二个函数显示如何获得两个数字之间的百分比增加/减少。

def get_percentage_increase(num_a, num_b):
    return ((num_a - num_b) / num_b) * 100


print(get_percentage_increase(50, 30))  # 👉️ 66.6666...
print(get_percentage_increase(50, 100))  # 👉️ -50.0

第一个示例显示从 30 增加到 50 的百分比是 66.6666...%

第二个显示从 10050 的百分比增加是 -50%

如果你总是需要得到一个正数,使用 abs() 函数。

def get_percentage_increase(num_a, num_b):
    return (abs(num_a - num_b) / num_b) * 100


print(get_percentage_increase(50, 30))  # 👉️ 66.6666...
print(get_percentage_increase(50, 100))  # 👉️ 50.0

abs 函数返回数字的绝对值。 换句话说,如果数字是正数,则返回数字,如果数字是负数,则返回数字的负数。这样,我们始终可以保证在计算两个数字之间的百分比差异时得到一个正数。

我们可能想要处理的事情是除以 0。除以 0 会在 Python 中引发 ZeroDivisionError

def get_percentage_increase(num_a, num_b):
    return (abs(num_a - num_b) / num_b) * 100


print(get_percentage_increase(50, 0))  # 👉️ inf
print(get_percentage_increase(50, 50))  # 👉️ 0.0
print(get_percentage_increase(50, 100))  # 👉️ 50.0

python ZeroDivisionError

我们可以在 try/except 块中处理错误。

def get_percentage_increase(num_a, num_b):
    try:
        return (abs(num_a - num_b) / num_b) * 100
    except ZeroDivisionError:
        return float('inf')


print(get_percentage_increase(50, 0))  # 👉️ inf
print(get_percentage_increase(50, 50))  # 👉️ 0.0
print(get_percentage_increase(50, 100))  # 👉️ 50.0

如果我们收到 ZeroDivisionError 错误,我们将返回 Infinity,但是我们可以以适合您的用例的任何其他方式处理该错误。

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

Python for 循环中的下一项

发布时间:2023/04/26 浏览次数:179 分类:Python

本文讨论了 Python 中的 for 循环以及如何通过使用 for 循环和示例来跳过列表的第一个元素。

Python While 循环用户输入

发布时间:2023/04/26 浏览次数:148 分类:Python

我们可以在 while 循环中使用 input() 函数来输入数据,直到在 Python 中满足某个条件。

Python 中的整数规划

发布时间:2023/04/26 浏览次数:193 分类:Python

本文介绍了整数规划和可用于解决混合整数规划问题的 Python 工具。

在 Python 中将整数转换为罗马数字

发布时间:2023/04/26 浏览次数:87 分类:Python

本篇文章将介绍在 Python 中将整数转换为罗马数字。以下是一个 Python 程序的实现,它将给定的整数转换为其等效的罗马数字。

在 Python 中将罗马数字转换为整数

发布时间:2023/04/26 浏览次数:144 分类:Python

本文讨论如何在 Python 中将罗马数字转换为整数。 我们将使用 Python if 语句来执行此操作。 我们还将探讨在 Python 中将罗马数字更改为整数的更多方法。

在 Python 中读取 gzip 文件

发布时间:2023/04/26 浏览次数:70 分类:Python

本篇文章强调了压缩文件的重要性,并演示了如何在 Python 中使用 gzip 进行压缩和解压缩。

在 Python 中锁定文件

发布时间:2023/04/26 浏览次数:141 分类:Python

本文解释了为什么在 Python 中锁定文件很重要。 这讨论了当两个进程在没有锁的情况下与共享资源交互时会发生什么的示例,为什么在放置锁之前知道文件状态很重要,等等

在 Python 中将 PDF 转换为文本

发布时间:2023/04/26 浏览次数:196 分类:Python

在本教程中,我们将学习如何使用 Python 使用 PyPDF2、Aspose 和 PDFminer 将 PDF 文档转换为文本文件。

在 Python 中创建临时文件

发布时间:2023/04/26 浏览次数:53 分类:Python

本文讲解了tempfile库函数的四个子函数:TemporaryFile、NamedTemporaryFile、mkstemp、TemporaryDirectory。 每个部分都提供了适当的程序,以简化对概念的理解。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便