如何在Python中对小数部分进行向上和向下舍入
如何将python中的小数点舍入和汇总。
用户输入
a = 2.336 After round up it should be like a = 2.34
a = 4.13623 After round up it should be like a = 4.14
是否有任何内置功能在Python中进行操纵。
How to round down and round up the decimal values in python.
user input
a = 2.336 After round up it should be like a = 2.34
a = 4.13623 After round up it should be like a = 4.14
Is there any built in functions in python to manipulate.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以尝试像
这里的
2
inpow(10,2)
代表你需要的小数点后面的精度you could try something like
here
2
inpow(10,2)
stands for the precision you need behind the decimal point您可以使用
ceil()
和flo Floor()
MATH 模块。这是一些可以帮助您入门的代码。尝试弄清楚小数和乘数变量在这里的工作方式。
You can use the
ceil()
andfloor()
functions from the math module. Here's some code to help you get started.Try figuring out how the decimal and multiplier variables are working here.