Python 判断一个字符串是否在列表中任何一个字符串中出现过
strlist = ['a1', 'a2', 'b1']
if any("a" in s for s in strlist):
posted on 2015-02-10 11:49 sdet_liang 阅读(5884) 评论(0) 编辑 收藏 举报
记录开发测试中碰到的问题和解决办法
strlist = ['a1', 'a2', 'b1']
if any("a" in s for s in strlist):
posted on 2015-02-10 11:49 sdet_liang 阅读(5884) 评论(0) 编辑 收藏 举报