python判断list中是否存在某字符
(2018-12-20 11:08:21)
标签:
python |
分类: python |
List = ['a','b','c','d']
if 'a' in List:
print('存在。')
else:
print('不存在。')
if 'm' not in List:
print('不存在。')
else:
print('存在。')
----输出结果---
存在。
不存在。