黑猴子的家:Python 数据运算
2019-01-21 本文已影响62人
黑猴子的家
1、算术运算
![](https://img.haomeiwen.com/i9193428/887d772c81b716db.png)
2、比较运算
![](https://img.haomeiwen.com/i9193428/bf245e753ff8b6db.png)
3、赋值运算
![](https://img.haomeiwen.com/i9193428/6427a49fdf89d9af.png)
4、逻辑运算
![](https://img.haomeiwen.com/i9193428/69274899d5d06fb0.png)
5、成员运算
![](https://img.haomeiwen.com/i9193428/c1b6e80a8c632e2d.png)
6、身份运算
![](https://img.haomeiwen.com/i9193428/d140629955d67184.png)
7、位运算
![](https://img.haomeiwen.com/i9193428/5a128802f5ac254a.png)
code
#!/usr/bin/python
a = 60 # 60 = 0011 1100
b = 13 # 13 = 0000 1101
c = 0
c = a & b; # 12 = 0000 1100
print "Line 1 - Value of c is ", c
c = a | b; # 61 = 0011 1101
print "Line 2 - Value of c is ", c
c = a ^ b; # 49 = 0011 0001 #相同为0,不同为1
print "Line 3 - Value of c is ", c
c = ~a; # -61 = 1100 0011
print "Line 4 - Value of c is ", c
c = a << 2; # 240 = 1111 0000
print "Line 5 - Value of c is ", c
c = a >> 2; # 15 = 0000 1111
print "Line 6 - Value of c is ", c
8、运算符优先级
![](https://img.haomeiwen.com/i9193428/0060215a7878065e.png)