Update 01. 变量、运算符与数据类型.md

This commit is contained in:
LSGOMYP
2020-07-20 19:23:08 +08:00
parent 4c13c78541
commit 7e369ecf61

View File

@@ -107,7 +107,7 @@ print(not (2 > 1)) # False
:---:|:---:|:---:
`~` |按位取反|`~4`
`&` |按位与 | `4 & 5`
`|` |按位或 | `4 | 5`
`\|` |按位或 | `4 \| 5`
`^` |按位异或|`4 ^ 5`
`<<`|左移 |`4 << 2`
`>>`|右移 |`4 >> 2`