Challenge: Append Data into a CSV file
Can we write a code that will append data to a CSV file?
We'll cover the following...
Problem statement
Append the data into a CSV
file and view the appended file using the cat
command to view data inside it.
Given data
A Test.csv
file with the following data.
"Name","City"
"Prateek","New
...