标签: python
python3中是否有任何函数可以自动将十进制值调整为最接近的整数? 喜欢4.8到5和4.3到4
答案 0 :(得分:0)
您可以使用内置的round功能。 E.g:
round
>>> round(4.8) 5 >>> round(4.3) 4