标签:判断 流程 字符 div str print span class not
print("e" in "hello eogn")
True
print(‘z‘ in [‘c‘,‘y‘,‘z‘])
True
print(‘k1‘ in {‘k1‘:666,‘k2‘:01})
print(01 in {‘k1‘:666,‘k2‘:01})
True
False
print("e" not in "hello eogn")
False
print(‘z‘ not in [‘c‘,‘y‘,‘z‘])
False
print(‘k1‘ in {‘k1‘:666,‘k2‘:01})
print(01 in {‘k1‘:666,‘k2‘:01})
False
True
x = 1 y = 1 print(x is y) True
x = 1 y = 1 print(x is not y) False
标签:判断 流程 字符 div str print span class not
原文地址:https://www.cnblogs.com/Tornadoes-Destroy-Parking-Lots/p/12433524.html