Must
- Read values from a 1D list, output to console.
- Read values from the console, write to 1D list.
- Read values from a 1D list, write to text file.
- Read values from the console, write to text file.
- Read values from a text file (each value on a separate line), write to 1D list.
- Read a paragraph--terminated by a single EOL character--from a text file, write to 1D list.
- Read values from a 2D list, output to console.
- Read CSV data from the console, write to 2D list.
Read up on the strip() string methods to help with problem 6.
Could
- Read values from a 2D list, write to text file.
- Read CSV data (or lines of text terminated with EOL characters), from text file, write to 2D list.