Input_test = input("enter somethings eaten in last 24 hrs: ")
dairy_check = "dairy" in Input_test
print(dairy_check)
print("It is", dairy_check, "that", '"'+Input_test+'"', "contains", '"dairy"')
nuts_check = 'nuts' in Input_test.lower()
print("It is", nuts_check, "that", '"'+Input_test+'"', "contains", "nuts")
chocolate_check = 'chocolate' in Input_test.lower()
print("It is", chocolate_check, "that", '"'+Input_test+'"', "contains", "chocolate")
seafood_check = 'seafood' in Input_test.lower()
print("It is", seafood_check, "that", '"'+Input_test+'"', "contains", "seafood")