ConfigParser -- report and modify

  1. Use the ConfigParser module in the standard library to parse a configuration (.ini) file.
  2. Print a report showing the sections, the options in each section, and the value of each option.
  3. Construct a Python data structure containing the configuration information in a form that supports easy look-up.
  4. Add a new value to one of the sections. Then, write the modified configuration to a new file on disk.

What you will learn:

Additional information: