Question: THIS IS FOR PYTHON CODING: Write a menu-driven program that converts between metric and English units. The program should present the user with the following
THIS IS FOR PYTHON CODING:

Write a menu-driven program that converts between metric and English units. The program should present the user with the following menu of options 1) Miles -> Kilometers 2) Kilometers -> Miles 3) F > C 4) C-> F 5) lb - kg 6) kg -> lb 7) quit Enter your choice: From the menu, the user selects one of the 7 options. If the user select 7, the program accordingly and perform the desired conversion Please enter the temperature in degrees C 12 should quit. If the user enters 4, for example, the program should prompt the user 12 C-53.6 F The program should then reprint the menu and allow the user to select another conversion. Your program should contain a minimum of 8 functions to perform the following operations: -main function to print the menu and get the user's input function to convert miles to kilometer function to convert kilometer to miles function to convert F to C function to convert C to F function to convert lb to kg function to convert kg to lb Of these, store the six conversion functions in a module named metric.py
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
