ask the user for number of meters to conver to cm
plug in that user input into the function and print out:
“<entered meters> is equal to <resulting centimeters>”
Make the program run continuously until the user enters “exit”
use a while loop, add code to make sure it exits (break)
Loops: while True, for loop with range
Get user input, (careful of datatypes how to convert to int)
Functions: with and without return value
Fixing bugs – practice with the old homework
Make sure to check the expected result and adjust your fixed code to make it
act like the expected result