๐Ÿ“Šcsv.reader, csv.DictReader, csv.writerWORKSHOP
1
2
3
4
5

Step 1

Use `csv.reader` to parse a CSV string. Wrap the CSV text in `io.StringIO` to treat it as a file-like object, then iterate over the reader to print each row as a Python list. Notice how the header row is included as the first list.

โŒ˜ Enter (Mac) ยท Ctrl+Enter (Win/Linux)