Convert Length/Distance Measurements

Project #1

Create a GUI program that will convert length/distance measurements into different units.

  1. the user inputs a length/distance and its units
  2. the user selects different units
  3. the program displays the length/distance in the new units
  4. loop

Initial Length/distance measurement units

mmmillimeters
cmcentimeters
mmeters
kmkilometers
ininches
ftfoot/feet
ydyards
mimiles

GUI

See Python GUIs .

Project #2

Add more length/distance measurement units to the program

nmnautical miles
dmdecameters
fmfathoms
ffurlongs
pcparsecs
auastronomical units
lylight-years

Project #3

Calculate and display all of the conversions for a length/distance of 19.4 miles.

Note: What is a good (readable) non-GUI format to display the values? F strings?