码迷,mamicode.com
首页 > 编程语言 > 详细

Python 算数运算

时间:2019-11-23 00:07:49      阅读:69      评论:0      收藏:0      [点我收藏+]

标签:运算   取整   pytho   加法   python   print   整数   int   算数   

Python的数学运算
 
print(1+2)#加法
#3
print(1-2)#减法
#-1
print(1*2)#乘法
#2
print(1/2)#除法
#0.5
print(2**4)#幂运算 2的4次
#16
print(10%3)#取余数
#1
print(10//3)#取整数
#3

Python 算数运算

标签:运算   取整   pytho   加法   python   print   整数   int   算数   

原文地址:https://www.cnblogs.com/gancai/p/11914657.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!