At Westonci.ca, we provide reliable answers to your questions from a community of experts. Start exploring today! Join our Q&A platform and get accurate answers to all your questions from professionals across multiple disciplines. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently.
Sagot :
The program prompts user for the time of meal they will be having and a suggestion made on their behalf. The program is written in python 3 thus :
meal= input('your meal : ')
#prompts user to enter a meal type
if meal == 'breakfast' :
#check if it's breakfast
print('How about some Avocado')
elif meal == 'lunch' :
#checks if it's lunch
print('like some grapes?')
else:
print('would rice be ok?')
A sample run of the program is attached.
Learn more :https://brainly.com/question/25531734

Thanks for using our platform. We aim to provide accurate and up-to-date answers to all your queries. Come back soon. We appreciate your time. Please come back anytime for the latest information and answers to your questions. Stay curious and keep coming back to Westonci.ca for answers to all your burning questions.