63.3k views
4 votes
How to code in Python, prompting users to select options for making a peanut butter and jelly sandwich:

a) Use the input() function
b) Implement a loop
c) Display a menu
d) All of the above

User GgPeti
by
7.8k points

1 Answer

2 votes

Final answer:

To code in Python for making a peanut butter and jelly sandwich, you can use the input() function, implement a loop, and display a menu. An example code is provided.

Step-by-step explanation:

To code in Python for making a peanut butter and jelly sandwich, you can use the input() function to prompt the user for their selected options. You can implement a loop to continuously prompt the user until they provide a valid option. You can also display a menu to visually present the available options. In this case, the correct answer would be d) All of the above.

Example:

print('Welcome to the Peanut Butter and Jelly Sandwich Maker!')

options = ['Make sandwich', 'Add peanut butter', 'Add jelly', 'Exit']

while True:
print('Please select an option:')
for i, option in enumerate(options):
print(f'{i+1}. {option}')
choice = input()
if choice.isdigit() and 1 <= int(choice) <= len(options):
selected_option = options[int(choice)-1]
if selected_option == 'Make sandwich':
print('Your sandwich is ready!')
break
else:
print(f'You selected: {selected_option}')
else:
print('Invalid option. Please try again.')

User Oki Erie Rinaldi
by
7.9k points