Booleans, like integers, have to be converted to strings before they can be added to strings. See if you can fix this program, which should print whether or not someone brought food to a party and whether or not they brought a drink.

brought_food = True
brought_drink = False

# These lines don't work! Fix them so that they do.
if brought_food:
print("Did the person bring food? " + str(brought_food))
else:
print("Did the person bring a drink? " + str(brought_drink))
if brought_drink:
print("Did the person bring a drink? " + str(brought_drink))




brought_food = True
brought_drink = False

# These lines don't work! Fix them so that they do.
if brought_food:
print("Did the person bring food? " + str(brought_food))
else:
print("Did the person bring a drink? " + str(brought_drink))
if brought_drink:
print("Did the person bring a drink? " + str(brought_drink))