Looking for trustworthy answers? Westonci.ca is the ultimate Q&A platform where experts share their knowledge on various topics. Discover detailed solutions to your questions from a wide network of experts on our comprehensive Q&A platform. Our platform provides a seamless experience for finding reliable answers from a network of experienced professionals.
Sagot :
Answer:
brought_food = True
brought_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)
Explanation:
i got 100%
In this exercise we have to use the knowledge of the python language to write the code, so we have to:
The code is in the attached photo.
What is a string?
String is a collection of alphabets, words or other characters. It is one of the primitive data structures and are the building blocks for data manipulation.
So to make it easier the code can be found at:
brought_food = True
brought_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 about python at brainly.com/question/26104476

We appreciate your visit. Our platform is always here to offer accurate and reliable answers. Return anytime. We hope you found this helpful. Feel free to come back anytime for more accurate answers and updated information. Thank you for visiting Westonci.ca. Stay informed by coming back for more detailed answers.