in在python中的用法
时间: 2023-05-11 17:02:37 浏览: 93
in 在 Python 中是一个运算符,用于判断一个元素是否存在于一个序列中,包括字符串、列表、元组等。例如:
```python
>>> 'a' in ['a', 'b', 'c']
True
>>> 1 in (1, 2, 3)
True
>>> 'hello' in 'hello world'
True
```
它的语法形式为:
```python
element in sequence
```
其中,element 是要判断的元素,sequence 是要判断的序列。如果 element 存在于 sequence 中,则返回 True,否则返回 False。
阅读全文