for name in ['red', 'green', 'blue', 'yellow', 'orange']:
if name in ['orange']:
print "I hate {color} color!!!".format(color=name)
break
print "There is {color} flowers".format(color=name)
else:
print "And there's no colors I hate, so good!"
print
print "Once again..."
print
for name in ['red', 'green', 'blue', 'yellow']:
if name in ['orange']:
print "I hate {color} color!!!".format(color=name)
break
print "There is {color} flowers".format(color=name)
else:
print "And there's no colors I hate, so good!"