Must

  1. Read values from a 1D list, output to console.
  2. Read values from the console, write to 1D list.
  3. Read values from a 1D list, write to text file.
  4. Read values from the console, write to text file.
  5. Read values from a text file (each value on a separate line), write to 1D list.
  6. Read a paragraph--terminated by a single EOL character--from a text file, write to 1D list.
  7. Read values from a 2D list, output to console.
  8. Read CSV data from the console, write to 2D list.

Read up on the strip() string methods to help with problem 6.

Could

  1. Read values from a 2D list, write to text file.
  2. Read CSV data (or lines of text terminated with EOL characters), from text file, write to 2D list.