Python:如何将 123 舍入为 100 而不是 100.0?

发布于 2024-08-30 11:25:13 字数 102 浏览 5 评论 0原文

>>> round(123,-2)
100.0
>>> 

如何将其舍入为 100 而不是 100.0?

>>> round(123,-2)
100.0
>>> 

How to round it to 100 instead of 100.0? 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

凡间太子 2024-09-06 11:25:14
int(round(123,-2))

int 函数可用于转换字符串或数字转换为普通整数

int(round(123,-2))

The int function can be used to convert a string or number to a plain integer.

执笔绘流年 2024-09-06 11:25:14

您可以将其放入 int 中:

In [1]: int(round(123, -2))
Out[1]: 100

you can just throw it in int:

In [1]: int(round(123, -2))
Out[1]: 100
旧瑾黎汐 2024-09-06 11:25:14

您可以使用 int(100.0) 在 python 2.x 和 python3.x 中转换为 100,它就可以工作

Python 3.1.2 (r312:79149, ...
>>>
>>> round(123,-2)
100
>>>

You could use int(100.0) to convert to 100 in python 2.x and in python3.x, its just works

Python 3.1.2 (r312:79149, ...
>>>
>>> round(123,-2)
100
>>>
江湖彼岸 2024-09-06 11:25:14

您可以使用正则表达式: (\d+)\..* 来匹配整个内容并仅提取整数部分。

You can use regular expression : (\d+)\..* to match the entire thing and extract only the integer part.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文