您如何在Python中舍入字符串?

前端之家收集整理的这篇文章主要介绍了您如何在Python中舍入字符串? 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我是Python的新手,也是一名学生,我的大学为我们的课程选择了世界上最糟糕的书.我找不到任何概念的示例,因此我提前道歉,因为我知道这些概念非常基础.我希望你能帮助我.

我需要知道如何在字符串中使用圆形特征.我找到了示例,但它们没有显示字符串,只是简单的数字.

这是我们应该得到的输出
输入总收入:12345.67
输入家属人数:1

所得税是$-130.87< ----这就是我们应该弄清楚的 这是我们可以更改的编码:

TAX_RATE = 0.20
STANDARD_DEDUCTION = 10000.0
DEPENDENT_DEDUCTION = 3000.0

# Request the inputs
grossIncome = float(input("Enter the gross income: "))
numDependents = int(input("Enter the number of dependents: "))   

# Compute the income tax
taxableIncome = grossIncome - STANDARD_DEDUCTION - \
                DEPENDENT_DEDUCTION * numDependents
incoMetax = taxableIncome * TAX_RATE 

# Display the income tax

print("The income tax is $" + str(incoMetax))

由于我没有NUMBER可以插入公式中-我必须弄清楚如何使用“ incoMetax”-我不知道该怎么做.这本书没有解释.救命?

最佳答案
您可以在将其设为字符串之前进行四舍五入:

print("The income tax is $" + str(round(incoMetax,2)))

输出

Enter the gross income: 12345.67
Enter the number of dependents: 1
The income tax is $-130.87
原文链接:https://www.f2er.com/python/533079.html

猜你在找的Python相关文章