# Various Icecream flavors
menu_item1 = "Chocolate"
menu_item2 = "Vanilla"
menu_item3 = "Strawberry"
order = input("\nWhich flavors would you like on your icecream today?\n\n" +
"\n".join([menu_item1, menu_item2, menu_item3]) + "\n\n")
# Convert input to list of flavors.
order = order.lower().split()
plural = "s" if len(order) > 1 else " "
print("\nYou have selected " + ", " .join(order) + " flavor" + plural)
Question 4: For lines 22-24, How do I get the code to be organized after the previous 3 questions have been answered and correct with the right code?
Example Output:
If:
Else:
My Output: Check Code above.
menu_item1 = "Chocolate"
menu_item2 = "Vanilla"
menu_item3 = "Strawberry"
order = input("\nWhich flavors would you like on your icecream today?\n\n" +
"\n".join([menu_item1, menu_item2, menu_item3]) + "\n\n")
order = order.lower().split()
last = order.pop();
tail = ""
if len(order):
tail = " and "
plural = "s" if len(order) > 1 else " "
print("\nYou have selected", ", ".join(order) + tail + last, "flavor" + plural)
Comments
Leave a comment