Give Python code to write a CGI form to record temperatures via a web page.
The form offers the following functionality:
  1. The user enters the value for the temperature as a number in an input element.
  2. With a radio button the user can choose between Fahrenheit or Celsius.
    The corresponding values for the buttons are repectively F and C.
  3. The script record.py is called when the user hits the submit button.

Answer: quiz9b.py