摘要: nt()函数直接截去小数部分 floor() 得到最接近原数但是小于原数的部分 round()得到最接近原数的整数(返回为浮点类型) >>> int(0.2) +0.0 floor(0.2) +0.0 round(0.2) +0.0 int(0.7) +0.0 floor(0.7) +0.0 rou 阅读全文
posted @ 2017-11-07 16:12 黑桃09 阅读(2511) 评论(0) 推荐(0) 编辑