a = ['eggs', 'bacon'] no_spam = True for x in a: if x == 'spam': no_spam = False if no_spam: print('there is no spam in it')
So to make it slightly shorter and avoid using an additional variable:
a = ['eggs', 'bacon'] for x in a: if x == 'spam': break else: print('there is no spam in it')
a = ['eggs', 'bacon'] if not any(map(lambda x: True if x == 'spam' else False, a)): print('there is no spam in it')
2 comments:
if not "spam" in a:
if not any(map(lambda x: x == 'spam', a)):
print('there is no spam in it')
Post a Comment