Python:判断字符串是否在列表每个元素中

实例:模糊查询

    def el_inList_eachEl(self,el,list):
        for i in list:
            if el in i:
                log1.info('查询元素【{0}】,列表查询为【{1}】,查询结果成功!!!'.format(el,i))
            else:
                log1.error('查询元素【{0}】,列表查询为【{1}】,查询结果错误!!!'.format(el,i))

你可能感兴趣的:(Python学习,python,列表)