python中的in
1、in,成员运算符 - 如果字符串中包含给定的字符返回 True;not in,成员运算符 - 如果字符串中不包含给定的字符返回 True
#!/usr/bin/python3
a = "Hello"
b = "Python"
if( "H" in a) :
print("H 在变量 a 中")
else :
print("H 不在变量 a 中")
if( "M" not in a) :
print("M 不在变量 a 中")
else :
print("M 在变量 a 中")
2、列表,元组,字典,集合中的in,下面以列表举例
#!/usr/bin/python3
'''
Created on 2019年5月6日
@author: Administrator
'''
def cli():
print("start...")
print(3 in [1, 2, 3]) # 元素是否存在于列表中
for x in [1, 2, 3]:
print(x, end=" ") # 迭代
if __name__ == '__main__':
cli()
输出:
start...
True
1 2 3