Run
list_1 = ['apple', 'cherry', 'mango'] for item in list_1: if len(item) == 3: print('Item with length 3 is found.') break else: print('Item with length 3 is NOT found.')
Output