Python中的round()函数是干什么的?#Python2022-04-17 18:21分类:Python 0 条评论 请先 登录 后评论 默认排序 时间排序 1 个回答|263 次阅读 2022-04-17 18:22 Coco老师 - 官方公众号:青少儿编程学习网 擅长:编程教育 • 网站:https://kidscodes.cn/描述:round() 函数返回浮点数x的四舍五入值。语法:round( x [, n] )参数:x -- 数值表达式。n --代表小数点后保留几位案例:round(10.0222222, 3)10.022 请先 登录 后评论