Question: I need your help in writing this code. The menu should look like this: # Step 1 : Create a menu system with a starting

I need your help in writing this code. The menu should look like this:
# Step 1: Create a menu system with a starting option.
menu_option ='X'
# Step 2: An empty list to store the amount of plastic (in kg) removed by each rig each day.
plastic_removed =[]
# Step 3: Variable to track the day number.
current_day =0
# Step 4: Keep running the program until the user decides to quit by pressing 'E'.
while menu_option !='E':
# Display the menu and ask what the user wants to do.
menu_string ="""
A = Add data
T = Get Total kg of Plastic Removed
O = Get Number of Overload Days
E = End program
Choose an option:
"""
menu_option = input(menu_string) # Get the user's choice. Please make it simple and easy to understand.
I need your help in writing this code. The menu

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!