Answered by AI, Verified by Human Experts
In this exercise we have to use the knowledge of thepython languageto write thecode, so we have to:The code is in the attached photo.What is a string?Stringis acollectionof alphabets, words or other characters. It is one of the primitivedata structuresand are thebuilding blocksfordatamanipulation.So to make it easier thecodecan be found at:brought_food = Truebrought_drink = False# These lines don't work! Fix them so that they do.print "Did the person bring food? " + str(brought_food)print "Did the person bring a drink? " + str(brought_drink)See more aboutpythonatbrainly.com/question/26104476...