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

python3的运算符

时间:2018-04-10 16:30:55      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:5.0   oat   span   floor   red   power   card   ffffff   result   

1,Python的加,减,乘。除
>>> 2 + 2 4 >>> 50 - 5*6 20 >>> (50 - 5*6) / 4 5.0 >>> 8 / 5 # division always returns a floating point number 1.6
2,Python的取余,取整
>>> 17 / 3  # classic division returns a float
5.666666666666667
>>>
>>> 17 // 3  # floor division discards the fractional part
5
>>> 17 % 3  # the % operator returns the remainder of the division
2
>>> 5 * 3 + 2  # result * divisor + remainder
17
3,Python的幂运算
>>> 5 ** 2  # 5 squared
25
>>> 2 ** 7  # 2 to the power of 7
128
4,Python的赋值运算
>>> width = 20
>>> height = 5 * 9
>>> width * height
900

python3的运算符

标签:5.0   oat   span   floor   red   power   card   ffffff   result   

原文地址:https://www.cnblogs.com/wangyunqiang/p/8780118.html

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