python3算术运算注意点 python3的算术运算需要注意的点1、除法10 / 3 => 3.33333333333333352、整除10 // 3 => 3 10.0 // 3 => 3.0 10 // 3.0 => 3.0 阅读全文 Python 2019-04-06 评论 804 次浏览