📅  最后修改于: 2023-12-03 15:31:23.345000             🧑  作者: Mango
在Python中,'in'运算符可以用于搜索字符串、列表、元组、字典等数据类型中是否包含指定的值。而且,'in'运算符是区分大小写的。这意味着,如果查询的值的大小写与列表或字符串中的不同,'in'运算符会返回False。
text = 'Python is powerful'
print('power' in text) # 返回True
print('Power' in text) # 返回False
fruits = ['apple', 'banana', 'orange']
print('apple' in fruits) # 返回True
print('Apple' in fruits) # 返回False
person = {'name': 'John', 'age': 30, 'city': 'New York'}
print('name' in person) # 返回True
print('Name' in person) # 返回False
'In'运算符用于搜索大小写词时,务必记得区分大小写。如果不区分大小写,则可以将查询字符串和列表或字符串中的元素都转换为小写或大写字母,以便进行比较。