Instruction
A CSV dialect is simply a list of parameters that specify the characteristics of a CSV file format. Python comes with some predefined dialects. To get to know them, you can use:
csv.list_dialects()
Let's run this code together.
Exercise
Run the template code. As you can see, there are three built-in dialects: excel, excel-tab, and unix.



