📅  最后修改于: 2023-12-03 14:50:31.869000             🧑  作者: Mango
本程序是一个简单的计算奥斯本小学学生人数减少百分比的工具。用户可以输入去年和今年的学生人数,程序将计算出学生人数的减少百分比。
用户需要调用 calculate_percentage
函数,并传入去年和今年的学生人数作为参数。该函数将返回学生人数减少的百分比。
percentage = calculate_percentage(last_year_students, this_year_students)
print(f"学生人数减少了 {percentage}%")
def calculate_percentage(last_year_students: int, this_year_students: int) -> float:
"""计算学生人数减少的百分比"""
decrease = last_year_students - this_year_students
percentage = decrease / last_year_students * 100
return abs(percentage)
last_year_students = 870
this_year_students = 696
percentage = calculate_percentage(last_year_students, this_year_students)
print(f"学生人数减少了 {percentage}%")
输出结果:
学生人数减少了 20.0%
通过这个程序,我们可以方便地计算奥斯本小学学生人数的减少百分比,并根据需要进行进一步处理。