print "Example 1: " recall_list = ["vpn123", "ncc1946", "gst7"] item = raw_input ("Product code: ") if item in recall_list: print "Your product was on the recall list, take it back" else: print "You're safe" print print "Example 2:" days = ["Sun", "Mon", "Tue", "Wed", "Thur", "Fri", "Sat"] for temp in days: print temp