在Python 3中,如何截断小数点后的所有数字?

例如,将3.444截短为3。

最佳答案

通过将其转换为int

>>> num = 3.444
>>> int(num)
3

08-24 17:20