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

This commit is contained in:
LSGOMYP
2020-07-20 19:11:14 +08:00
parent 4276dc0fda
commit 4c13c78541

View File

@@ -106,8 +106,8 @@ print(not (2 > 1)) # False
操作符 | 名称 | 示例
:---:|:---:|:---:
`~` |按位取反|`~4`
`&` |按位与 |`4 & 5`
`|` |按位或 |`4 | 5`
`&` |按位与 | `4 & 5`
`|` |按位或 | `4 | 5`
`^` |按位异或|`4 ^ 5`
`<<`|左移 |`4 << 2`
`>>`|右移 |`4 >> 2`