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

This commit is contained in:
LSGOMYP
2020-07-19 20:43:03 +08:00
parent 584a606987
commit 2867f073e5

View File

@@ -153,7 +153,7 @@ print(small) # 4
`in`|存在| `'A' in ['A', 'B', 'C']`
`not in`|不存在|`'h' not in ['A', 'B', 'C']`
`is`|是| `"hello" is "hello"`
`not is`|不是|`"hello" is not "hello"`
`is not`|不是|`"hello" is not "hello"`
【例子】