Python基本数学运算
吾八哥学Python(五):Python基本数学运算
今天我们学习Python里的基本数学运算方法,还是通过例子来练习吧!加减乘除求余练习代码:#加法print(12+34)#减法print(30-10.0)#乘法print(3*5)#除法print(10/3)print(10//3)#求余数print(10%3
日期 2017-07-12 阅 4183 吾八哥学PythonPython基本数学运算
1
今天我们学习Python里的基本数学运算方法,还是通过例子来练习吧!加减乘除求余练习代码:#加法print(12+34)#减法print(30-10.0)#乘法print(3*5)#除法print(10/3)print(10//3)#求余数print(10%3
日期 2017-07-12 阅 4183 吾八哥学PythonPython基本数学运算